summaryrefslogtreecommitdiff
path: root/Source/Asura.Engine/physics/world.h
blob: 971adce8854e8104e75467655e38503fc9c847c5 (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 "Box2D/Box2D.h"
#include "scripting/luax.hpp"

namespace AsuraEngine
{
	namespace Physics
	{

		class World
		{
		public:

		private:

			LUAX_DECL_FACTORY(SimWorld); //AsuraEngine.SimWorld

		};

	}
}

#endif