9 class Core_kernel
;//forward declaration car on ne peut pas inclure directement core_kernel.h => cela créerait une inclusion mutuelle vu que entity.h est inclus dans core_kernel
18 Entity(int x
, int y
, int width
, int height
);
19 Entity(Point pos
, Box box
);
20 Entity(int x
, int y
, int width
, int height
, Core_kernel
*ker
);
21 Entity(Point pos
, Box box
, Core_kernel
*ker
);
25 void set_pos(Point to
);
26 virtual void update_entity();