mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 11:24:46 +00:00
12 lines
152 B
TypeScript
12 lines
152 B
TypeScript
|
|
|
|
//打包环境
|
|
export enum Env{
|
|
Server, //服务器模式
|
|
H5, //H5模式
|
|
}
|
|
|
|
//当前环境
|
|
export const EnvCurrent:Env = Env.H5;
|
|
|