]> git.localhorst.tv Git - blank.git/blob - src/world/EntityController.hpp
2724c5e9c8278e67858d3da5d384a24fa26c3796
[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