bitburner-src/src/Corporation/IDivision.ts

8 lines
172 B
TypeScript
Raw Normal View History

2021-08-28 06:29:19 +02:00
import { IOfficeSpace } from "./IOfficeSpace";
import { IMap } from "../types";
2021-08-28 06:11:42 +02:00
export interface IDivision {
name: string;
2021-08-28 08:50:06 +02:00
offices: IMap<IOfficeSpace | number>;
2021-08-28 06:11:42 +02:00
}