From 7f0e8c7ef70c62814c274f110367db92f01cbb26 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Tue, 10 Mar 2015 00:41:59 -0400 Subject: C++11'd everything! Also moved location information from physics components into entity. --- src/world.h | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 src/world.h (limited to 'src/world.h') diff --git a/src/world.h b/src/world.h deleted file mode 100644 index ad6c788..0000000 --- a/src/world.h +++ /dev/null @@ -1,27 +0,0 @@ -#ifndef WORLD_H -#define WORLD_H - -class World; - -#include -#include "renderer.h" -#include "entity.h" -#include - -class World { - public: - World() {}; - ~World() {}; - void tick(); - void input(int key, int action); - void render(Texture* buffer); - void addEntity(std::shared_ptr e); - - std::list bodies; - std::shared_ptr player; - - private: - std::list> entities; -}; - -#endif -- cgit 1.4.1