21 lines
331 B
TypeScript
21 lines
331 B
TypeScript
|
// 加載數據定義
|
||
|
|
||
|
export enum SKLoadType{
|
||
|
Gui,
|
||
|
Json,
|
||
|
Text,
|
||
|
Prefab,
|
||
|
Atlas,
|
||
|
Dir
|
||
|
}
|
||
|
|
||
|
export default class SKLoadData{
|
||
|
type:SKLoadType;
|
||
|
url:string;
|
||
|
info:string;
|
||
|
constructor(type:SKLoadType,url:string,info:string){
|
||
|
this.type=type;
|
||
|
this.url=url;
|
||
|
this.info=info;
|
||
|
}
|
||
|
}
|