blob: 8c2c9b6fd45872dd0ecd93a5b1ee6b37519b50e9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef SCENE_KAPLA_ARENA_H
#define SCENE_KAPLA_ARENA_H
#include "SceneKapla.h"
using namespace physx;
// ---------------------------------------------------------------------
class SceneKaplaArena : public SceneKapla
{
public:
SceneKaplaArena(PxPhysics* pxPhysics, PxCooking *pxCooking, bool isGrb,
Shader *defaultShader, const char *resourcePath, float slowMotionFactor);
virtual ~SceneKaplaArena(){}
virtual void onInit(PxScene* pxScene);
private:
};
#endif // SCENE_BOXES_H
|