mirror of
https://gitee.com/dgflash/oops-framework.git
synced 2026-05-20 09:46:15 +08:00
18 lines
428 B
TypeScript
18 lines
428 B
TypeScript
/*
|
|
* @Date: 2021-08-12 09:33:37
|
|
* @LastEditors: dgflash
|
|
* @LastEditTime: 2022-01-24 15:15:30
|
|
*/
|
|
|
|
/** 网络配置 */
|
|
class NetConfig {
|
|
public gameIp: string = "192.168.1.150";
|
|
public gamePort: string = "9587";
|
|
public dbid!: number;
|
|
public sdkUid!: string;
|
|
public serverId!: number;
|
|
public sessionKey!: string;
|
|
public channelid!: number;
|
|
}
|
|
|
|
export var netConfig = new NetConfig(); |