pandaphysics.cxx 506 B

123456789101112131415161718192021
  1. /**
  2. * @file pandaphysics.cxx
  3. * @author drose
  4. * @date 2000-05-16
  5. */
  6. #include "pandaphysics.h"
  7. #include "config_physics.h"
  8. #include "config_particlesystem.h"
  9. /**
  10. * Initializes the library. This must be called at least once before any of
  11. * the functions or classes in this library can be used. Normally it will be
  12. * called by the static initializers and need not be called explicitly, but
  13. * special cases exist.
  14. */
  15. void
  16. init_libpandaphysics() {
  17. init_libphysics();
  18. init_libparticlesystem();
  19. }