16 lines
359 B
C++
16 lines
359 B
C++
#ifndef SERIALIZE_SETUP_H
|
|
#define SERIALIZE_SETUP_H
|
|
#include "Bullet3AppSupport/CommonRigidBodySetup.h"
|
|
|
|
class SerializeSetup : public CommonRigidBodySetup
|
|
{
|
|
public:
|
|
SerializeSetup();
|
|
virtual ~SerializeSetup();
|
|
|
|
virtual void initPhysics(GraphicsPhysicsBridge& gfxBridge);
|
|
virtual void stepSimulation(float deltaTime);
|
|
};
|
|
|
|
#endif //SERIALIZE_SETUP_H
|