123456789101112131415161718192021 |
- export class ModuleDef {
- /**
- * @en basic bundle, used for basic scene and common ui
- * @zh 基础 bundle,用于存放基础场景,公共UI
- */
- public static BASIC = 'module_basic';
-
- public static BALL = 'module_ball';
- /**
- * @en game bundle, used for game scene and common ui
- * @zh 用于存放游戏场景相关的素材
- */
- public static GAME = 'module_game';
- /**
- * @en game bundle, used for game scene and common ui
- * @zh 用于存放游戏场景相关的素材
- */
- public static ICONS = 'module_icons';
- }
|