mirror of
https://github.com/unanmed/HumanBreak.git
synced 2025-09-03 05:41:47 +08:00
40 lines
653 B
TypeScript
40 lines
653 B
TypeScript
export interface RequiredData {
|
|
main: {
|
|
floorIds: string[];
|
|
images: string[];
|
|
tilesets: string[];
|
|
animates: string[];
|
|
bgms: string[];
|
|
sounds: string[];
|
|
fonts: string[];
|
|
};
|
|
firstData: {
|
|
name: string;
|
|
};
|
|
}
|
|
|
|
export interface RequiredIconsData {
|
|
autotile: {
|
|
[x: string]: number;
|
|
};
|
|
}
|
|
|
|
export type ResourceUsage =
|
|
| 'image'
|
|
| 'tileset'
|
|
| 'animate'
|
|
| 'sound'
|
|
| 'font'
|
|
| 'autotile'
|
|
| 'material';
|
|
|
|
export type ResourceType =
|
|
| 'text'
|
|
| 'buffer'
|
|
| 'image'
|
|
| 'material'
|
|
| 'audio'
|
|
| 'json'
|
|
| 'zip'
|
|
| 'byte';
|