about to add SDL and probably break everything

This commit is contained in:
2023-01-16 10:01:06 -08:00
parent dbe2409287
commit 23fc1206ba
54 changed files with 904 additions and 138 deletions

View File

@@ -58,9 +58,15 @@ namespace Dawn {
*/
virtual void onStart();
/**
* Intended for subclasses to detect when they need to clean themselves up
* but before anything has been completely free'd from memory.
*/
virtual void onDispose();
/**
* Cleanup the SceneItemComponent.
*/
virtual ~SceneItemComponent();
~SceneItemComponent();
};
}