18 lines
265 B
TypeScript
18 lines
265 B
TypeScript
export const Game: {
|
|
creeps: { [name: string]: any };
|
|
rooms: any;
|
|
spawns: any;
|
|
time: any;
|
|
} = {
|
|
creeps: {},
|
|
rooms: [],
|
|
spawns: {},
|
|
time: 12345,
|
|
};
|
|
|
|
export const Memory: {
|
|
creeps: { [name: string]: any };
|
|
} = {
|
|
creeps: {},
|
|
};
|