mirror of
https://gitee.com/dgflash/oops-plugin-framework.git
synced 2026-05-08 03:16:49 +08:00
23 lines
600 B
TypeScript
23 lines
600 B
TypeScript
/*
|
|
* @Author: dgflash
|
|
* @Date: 2021-07-03 16:13:17
|
|
* @LastEditors: dgflash
|
|
* @LastEditTime: 2022-11-01 15:47:16
|
|
*/
|
|
|
|
import { BuildTimeConstants } from './BuildTimeConstants';
|
|
import type { GameConfig } from './GameConfig';
|
|
import type { GameQueryConfig } from './GameQueryConfig';
|
|
|
|
/** 游戏配置静态访问类 */
|
|
export class Config {
|
|
/** 环境常量 */
|
|
btc: BuildTimeConstants = new BuildTimeConstants();
|
|
|
|
/** 游戏配置数据,版本号、支持语种等数据 */
|
|
game!: GameConfig;
|
|
|
|
/** 浏览器查询参数 */
|
|
query!: GameQueryConfig;
|
|
}
|