Make Entity class not extend from `enable_shared_from_this`
This commit is contained in:
parent
5bedd85584
commit
5794fe6c2e
|
@ -17,7 +17,8 @@ namespace simpleengine {
|
||||||
class Game;
|
class Game;
|
||||||
class Event;
|
class Event;
|
||||||
|
|
||||||
class Entity : std::enable_shared_from_this<Entity> {
|
// @TODO Create a Destructible class that replaces Entity::Destroying, Entity::DestroyLater, and Entity::IsGettingDestroyed.
|
||||||
|
class Entity {
|
||||||
friend class Game;
|
friend class Game;
|
||||||
friend class Event;
|
friend class Event;
|
||||||
public:
|
public:
|
||||||
|
|
Loading…
Reference in New Issue