38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
export class ModuleDef {
|
||
/**
|
||
* @en basic bundle, used for basic scene and common ui
|
||
* @zh 基础 bundle,用于存放基础场景,公共UI
|
||
*/
|
||
public static BASIC = 'module_basic';
|
||
|
||
/**
|
||
* @en billiards bundle, used for billiards scene and common ui
|
||
* @zh 用于存放台球相关的所有素材、场景和代码
|
||
*/
|
||
public static BILLIARDS = 'module_billiards';
|
||
|
||
/**
|
||
* @en gomoku bundle, used for gomoku scene and common ui
|
||
* @zh 用于存放五子棋相关的所有素材
|
||
*/
|
||
public static GOMOKU = 'module_gomoku';
|
||
|
||
/**
|
||
* @en tank bundle, used for tank scene and common ui
|
||
* @zh 用于存放坦克大战相关的所有素材
|
||
*/
|
||
public static TANK = 'module_tank';
|
||
|
||
/**
|
||
* @en kingtd bundle, used for kingtd scene and common ui
|
||
* @zh 用于存放王者塔防相关的所有素材
|
||
*/
|
||
public static KingTD='module_kingtd';
|
||
|
||
/**
|
||
* @en arean bundle, used for arean scene and common ui
|
||
* @zh 斗蛐蛐
|
||
*/
|
||
public static Arean='module_arean';
|
||
}
|