13 lines
243 B
TypeScript
13 lines
243 B
TypeScript
import { Entity } from "../entities";
|
|
import { Game } from "../Game";
|
|
|
|
export abstract class System {
|
|
public readonly name: string;
|
|
|
|
constructor(name: string) {
|
|
this.name = name;
|
|
}
|
|
|
|
abstract update(dt: number, game: Game): void;
|
|
}
|