PhysicsServerExample.h 502 B

123456789101112131415
  1. #ifndef PHYSICS_SERVER_EXAMPLE_H
  2. #define PHYSICS_SERVER_EXAMPLE_H
  3. enum PhysicsServerOptions
  4. {
  5. PHYSICS_SERVER_ENABLE_COMMAND_LOGGING = 1,
  6. PHYSICS_SERVER_REPLAY_FROM_COMMAND_LOG = 2,
  7. PHYSICS_SERVER_USE_RTC_CLOCK = 4,
  8. };
  9. ///Don't use PhysicsServerCreateFuncInternal directly
  10. ///Use PhysicsServerCreateFuncBullet2 instead, or initialize options.m_commandProcessor
  11. class CommonExampleInterface* PhysicsServerCreateFuncInternal(struct CommonExampleOptions& options);
  12. #endif //PHYSICS_SERVER_EXAMPLE_H