/** * This interface defines an updatable element.
* It is implemented by all game objects, scenes, and the game itself. */ export interface IUpdatable { update(): void; }