| 123456789101112131415161718192021 |
- /**
- * @file pandaphysics.cxx
- * @author drose
- * @date 2000-05-16
- */
- #include "pandaphysics.h"
- #include "config_physics.h"
- #include "config_particlesystem.h"
- /**
- * 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_libpandaphysics() {
- init_libphysics();
- init_libparticlesystem();
- }
|