ported simulation

This commit is contained in:
2025-05-17 15:55:26 +02:00
parent 23e5707e98
commit 6ffa7e9c68
33 changed files with 1265 additions and 233 deletions

View File

@@ -0,0 +1,5 @@
import { SimMain } from "../SimMain";
export interface ISimAction {
execute(simMain: SimMain): void;
}