00001 // Filename: pandabullet.cxx 00002 // Created by: enn0x (10May2011) 00003 // 00004 //////////////////////////////////////////////////////////////////// 00005 00006 #include "pandabullet.h" 00007 #include "config_bullet.h" 00008 00009 // By including checkPandaVersion.h, we guarantee that runtime 00010 // attempts to load libpandabullet.so/.dll will fail if they 00011 // inadvertently link with the wrong version of libdtool.so/.dll. 00012 00013 #include "checkPandaVersion.h" 00014 00015 //////////////////////////////////////////////////////////////////// 00016 // Function: init_libpandabullet 00017 // Description: Initializes the library. This must be called at 00018 // least once before any of the functions or classes in 00019 // this library can be used. Normally it will be 00020 // called by the static initializers and need not be 00021 // called explicitly, but special cases exist. 00022 //////////////////////////////////////////////////////////////////// 00023 void 00024 init_libpandabullet() { 00025 init_libbullet(); 00026 } 00027