jumpstorm/engine/systems/System.ts

12 lines
205 B
TypeScript
Raw Normal View History

import { Game } from "../Game";
2023-07-19 23:38:24 -04:00
export abstract class System {
public readonly name: string;
constructor(name: string) {
this.name = name;
}
abstract update(dt: number, game: Game): void;
2023-07-19 23:38:24 -04:00
}