rename class to InterchangeSystem.ts and add builder arguments

This commit is contained in:
2025-04-06 10:43:34 -07:00
parent 2bc12aa794
commit db097b00dc
2 changed files with 13 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
import { System } from "./entities/System";
import { InterchangeSystem } from "./entities/InterchangeSystem";
export interface ServerContext {
systems: System[];
systems: InterchangeSystem[];
}