Removes unnecessary destroy methods

This commit is contained in:
Janus C. H. Knudsen 2025-10-01 22:38:15 +02:00
parent 4e5077364e
commit a1e1c5d185
19 changed files with 34 additions and 214 deletions

View file

@ -13,11 +13,6 @@ export interface IManager {
* Refresh the manager's state
*/
refresh?(): void;
/**
* Destroy the manager and clean up resources
*/
destroy?(): void;
}
/**