spawning objects

This commit is contained in:
DanielProl1xy
2024-02-19 11:44:36 +03:00
parent f717e1c109
commit cce4bfb637
2 changed files with 5 additions and 2 deletions
+2 -2
View File
@@ -17,9 +17,9 @@ public:
~Object() { destroyed(); }
public:
virtual void spawned() { }
virtual void spawned() { }
virtual void update(float delta) { }
virtual void destroyed() { }
virtual void destroyed() { }
};
#endif /* OBJECT_H */