Interface ISystem

interface ISystem {
    pause(): void;
    registerComponent(component: IComponent): void;
    resume(): void;
    unregisterComponent(uuid: string): void;
    update(deltaTime?: number): void;
}

Implemented by

Methods