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

38 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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';
}