mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-06-22 00:21:55 +00:00
16 lines
328 B
TypeScript
16 lines
328 B
TypeScript
import { Execution, Game, Player } from "../game/Game";
|
|
|
|
export class NoOpExecution implements Execution {
|
|
isActive(): boolean {
|
|
return false;
|
|
}
|
|
activeDuringSpawnPhase(): boolean {
|
|
return false;
|
|
}
|
|
init(mg: Game, ticks: number): void {}
|
|
tick(ticks: number): void {}
|
|
owner(): Player {
|
|
return null;
|
|
}
|
|
}
|