PhysicsAPI created

This commit is contained in:
Dander7BD 2013-11-12 15:57:53 +01:00
parent 19522d8ff6
commit 74aee284f9
2 changed files with 36 additions and 0 deletions

View File

@ -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