diff options
Diffstat (limited to 'Source/Asura.Engine/physics/world.h')
-rw-r--r-- | Source/Asura.Engine/physics/world.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Source/Asura.Engine/physics/world.h b/Source/Asura.Engine/physics/world.h new file mode 100644 index 0000000..71984f5 --- /dev/null +++ b/Source/Asura.Engine/physics/world.h @@ -0,0 +1,25 @@ +#ifndef __ASURA_ENGINE_WORLD_H__ +#define __ASURA_ENGINE_WORLD_H__ + +#include "Luax/luax.h" +#include "Box2D/Box2D.h" + +namespace AsuraEngine +{ + namespace Physics + { + + class World + { + public: + + private: + + LUAX_DECL_FACTORY(SimWorld); //AsuraEngine.SimWorld + + }; + + } +} + +#endif
\ No newline at end of file |