mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-06-22 00:31:56 +00:00
7235b73b6c
* fixed bug where NPC and Bots had same id * NPCs spawn near IRL location * NPCs have different strength (starting troops) * game has more NPCs than before * Needs more balancing
33 lines
632 B
TypeScript
33 lines
632 B
TypeScript
declare module '*.png' {
|
|
const content: string;
|
|
export default content;
|
|
}
|
|
declare module '*.jpg' {
|
|
const value: string;
|
|
export default value;
|
|
}
|
|
|
|
declare module '*.jpeg' {
|
|
const value: string;
|
|
export default value;
|
|
}
|
|
declare module '*.svg' {
|
|
const value: string;
|
|
export default value;
|
|
}
|
|
declare module '*.bin' {
|
|
const value: string;
|
|
export default value;
|
|
}
|
|
declare module '*.txt' {
|
|
const value: string;
|
|
export default value;
|
|
}
|
|
declare module '*.html' {
|
|
const content: string;
|
|
export default content;
|
|
}
|
|
declare module '*.json' {
|
|
const value: any;
|
|
export default value;
|
|
} |