squidGame/tgx-games-client/assets/scripts/ModuleDef.ts

38 lines
1.1 KiB
TypeScript
Raw Normal View History

2025-02-17 21:36:37 +08:00
export class ModuleDef {
/**
* @en basic bundle, used for basic scene and common ui
* @zh bundleUI
*/
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';
}