repo.or.cz
/
PACMAN.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
3è itération
[PACMAN.git]
/
engines
/
core_kernel.h
blob
9cc54e3ae4e2e8509d6bcf32687bc5caee54e6c6
1
#ifndef CORE_KERNEL
2
#define CORE_KERNEL
3
4
#include <vector>
5
#include <QApplication>
6
#include
"entity.h"
7
8
namespace
engine
9
{
10
class
Core_kernel
:
public
QApplication
11
{
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
();
18
};
19
}
20
21
#endif
// CORE_KERNEL