diff options
author | chai <chaifix@163.com> | 2019-01-28 13:28:13 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2019-01-28 13:28:13 +0800 |
commit | 49cd32a7c139490294ea952bde9f0b121301627a (patch) | |
tree | 82542c84b3b12fbaeceb8aacadcc7597f98b9130 /Source/Asura.Engine/Physics | |
parent | 3011504dd5d006b9004232f7439e68aeeb8edcf7 (diff) |
+Box2D
Diffstat (limited to 'Source/Asura.Engine/Physics')
-rw-r--r-- | Source/Asura.Engine/Physics/World.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Source/Asura.Engine/Physics/World.h b/Source/Asura.Engine/Physics/World.h index ffdc44b..36b55a8 100644 --- a/Source/Asura.Engine/Physics/World.h +++ b/Source/Asura.Engine/Physics/World.h @@ -1,12 +1,23 @@ #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 + }; } } |