blob: 36b55a8b2bae7dfee51b0d369bca4a2dfecad1ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
|