@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
10 lines • 325 B
TypeScript
export default TimerSystem;
declare class TimerSystem extends System<any, any, any, any, any> {
constructor();
dependencies: (typeof Timer)[];
update(timeDelta: any): void;
#private;
}
import { System } from '../System.js';
import Timer from '../components/Timer.js';
//# sourceMappingURL=TimerSystem.d.ts.map