mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-12 23:05:27 -04:00
22 lines
729 B
C++
22 lines
729 B
C++
// Filename: pandafx.cxx
|
|
// Created by: drose (11Dec01)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#include "pandafx.h"
|
|
|
|
#include <config_distort.h>
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: init_libpandafx
|
|
// Description: Initializes the library. This must be called at
|
|
// least once before any of the functions or classes in
|
|
// this library can be used. Normally it will be
|
|
// called by the static initializers and need not be
|
|
// called explicitly, but special cases exist.
|
|
////////////////////////////////////////////////////////////////////
|
|
void
|
|
init_libpandafx() {
|
|
init_libdistort();
|
|
}
|