3è itération
[PACMAN.git] / engines / core_kernel.h
blob9cc54e3ae4e2e8509d6bcf32687bc5caee54e6c6
1 #ifndef CORE_KERNEL
2 #define CORE_KERNEL
4 #include <vector>
5 #include <QApplication>
6 #include "entity.h"
8 namespace engine
10 class Core_kernel : public QApplication
12 private:
13 vector<Entity*> entities_list;
14 public:
15 Core_kernel(int &argc, char* argv[]);
16 void add_entity(Entity *e);
17 void main_loop();
21 #endif // CORE_KERNEL