WIP World changes

This commit is contained in:
2014-03-03 20:08:08 +01:00
parent 68f4be5822
commit 444be4f502
12 changed files with 249 additions and 52 deletions
+23
View File
@@ -0,0 +1,23 @@
#ifndef CollisionSystem_h__
#define CollisionSystem_h__
#include "System.h"
#include "logging.h"
#include "Components/Transform.h"
namespace Systems
{
class Collision : public System
{
public:
Collision(World* world) : System(world) { }
void Update(double dt, EntityID entity, EntityID parent) override;
};
}
#endif // CollisionSystem_h__