mirror of
https://gitee.com/dgflash/oops-plugin-framework.git
synced 2026-05-14 17:49:37 +08:00
22 lines
584 B
TypeScript
22 lines
584 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 { GameConfig } from "./GameConfig";
|
|
import { GameQueryConfig } from "./GameQueryConfig";
|
|
|
|
/** 游戏配置静态访问类 */
|
|
export class Config {
|
|
/** 环境常量 */
|
|
public btc!: BuildTimeConstants;
|
|
|
|
/** 游戏配置数据,版本号、支持语种等数据 */
|
|
public game!: GameConfig;
|
|
|
|
/** 浏览器查询参数 */
|
|
public query!: GameQueryConfig;
|
|
} |