PhysicsAPI created
This commit is contained in:
parent
19522d8ff6
commit
74aee284f9
|
@ -0,0 +1,36 @@
|
|||
#ifndef PHYSICS_API_H
|
||||
#define PHYSICS_API_H
|
||||
|
||||
#include "OysterMath.h"
|
||||
|
||||
namespace Oyster
|
||||
{
|
||||
namespace Physics
|
||||
{
|
||||
class API;
|
||||
class IRigidBody;
|
||||
class IParticle;
|
||||
|
||||
class API
|
||||
{
|
||||
public:
|
||||
static API & Instance();
|
||||
};
|
||||
|
||||
class IRigidBody
|
||||
{
|
||||
public:
|
||||
|
||||
};
|
||||
|
||||
class IParticle
|
||||
{
|
||||
public:
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
namespace Collision
|
||||
{}
|
||||
}
|
||||
#endif
|
Loading…
Reference in New Issue