mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-21 13:14:46 +00:00
13 lines
290 B
C
13 lines
290 B
C
|
|
#ifndef COLLISION_TUTORIAL_H
|
||
|
|
#define COLLISION_TUTORIAL_H
|
||
|
|
|
||
|
|
enum EnumCollisionTutorialTypes
|
||
|
|
{
|
||
|
|
TUT_SPHERE_PLANE_BULLET2=0,
|
||
|
|
TUT_SPHERE_PLANE_RTB3,
|
||
|
|
};
|
||
|
|
|
||
|
|
class CommonExampleInterface* CollisionTutorialBullet2CreateFunc(struct CommonExampleOptions& options);
|
||
|
|
|
||
|
|
#endif //COLLISION_TUTORIAL_H
|