Poodletooth-iLand/build/nirai/panda3d/panda/metalibs/pandabullet/pandabullet.cxx

27 lines
968 B
C++

// Filename: pandabullet.cxx
// Created by: enn0x (10May2011)
//
////////////////////////////////////////////////////////////////////
#include "pandabullet.h"
#include "config_bullet.h"
// By including checkPandaVersion.h, we guarantee that runtime
// attempts to load libpandabullet.so/.dll will fail if they
// inadvertently link with the wrong version of libdtool.so/.dll.
#include "checkPandaVersion.h"
////////////////////////////////////////////////////////////////////
// Function: init_libpandabullet
// 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_libpandabullet() {
init_libbullet();
}