]> git.localhorst.tv Git - blank.git/blob - src/world/EntityController.hpp
server save path argument without trailing slash
[blank.git] / src / world / EntityController.hpp
1 #ifndef BLANK_WORLD_ENTITYCONTROLLER_HPP_
2 #define BLANK_WORLD_ENTITYCONTROLLER_HPP_
3
4 namespace blank {
5
6 class Entity;
7
8 struct EntityController {
9
10         virtual ~EntityController();
11
12         virtual void Update(Entity &, float dt) = 0;
13
14 };
15
16 }
17
18 #endif