Panda3D
pandabullet.cxx
1 // Filename: pandabullet.cxx
2 // Created by: enn0x (10May2011)
3 //
4 ////////////////////////////////////////////////////////////////////
5 
6 #include "pandabullet.h"
7 #include "config_bullet.h"
8 
9 // By including checkPandaVersion.h, we guarantee that runtime
10 // attempts to load libpandabullet.so/.dll will fail if they
11 // inadvertently link with the wrong version of libdtool.so/.dll.
12 
13 #include "checkPandaVersion.h"
14 
15 ////////////////////////////////////////////////////////////////////
16 // Function: init_libpandabullet
17 // Description: Initializes the library. This must be called at
18 // least once before any of the functions or classes in
19 // this library can be used. Normally it will be
20 // called by the static initializers and need not be
21 // called explicitly, but special cases exist.
22 ////////////////////////////////////////////////////////////////////
23 void
24 init_libpandabullet() {
25  init_libbullet();
26 }
27