更新IServer的常量

This commit is contained in:
milimoe 2024-08-16 00:11:53 +08:00
parent d06f8417d6
commit 3cc7b84803
Signed by: milimoe
GPG Key ID: 05D280912DA6C69E
3 changed files with 3 additions and 6 deletions

View File

@ -59,8 +59,7 @@ namespace Milimoe.FunGame.Core.Api.Utility
InterfaceMethod.RemoteServerIP => InterfaceSet.Method.RemoteServerIP, InterfaceMethod.RemoteServerIP => InterfaceSet.Method.RemoteServerIP,
InterfaceMethod.DBConnection => InterfaceSet.Method.DBConnection, InterfaceMethod.DBConnection => InterfaceSet.Method.DBConnection,
InterfaceMethod.GetServerSettings => InterfaceSet.Method.GetServerSettings, InterfaceMethod.GetServerSettings => InterfaceSet.Method.GetServerSettings,
InterfaceMethod.GameModuleList => InterfaceSet.Method.GameModuleList, InterfaceMethod.SecretKey => InterfaceSet.Method.SecretKey,
InterfaceMethod.GameMapList => InterfaceSet.Method.GameMapList,
_ => "" _ => ""
}; };
} }

View File

@ -19,8 +19,7 @@ namespace Milimoe.FunGame.Core.Library.Constant
public const string RemoteServerIP = "RemoteServerIP"; public const string RemoteServerIP = "RemoteServerIP";
public const string DBConnection = "DBConnection"; public const string DBConnection = "DBConnection";
public const string GetServerSettings = "GetServerSettings"; public const string GetServerSettings = "GetServerSettings";
public const string GameModuleList = "GameModuleList"; public const string SecretKey = "SecretKey";
public const string GameMapList = "GameMapList";
} }
} }

View File

@ -11,7 +11,6 @@ namespace Milimoe.FunGame.Core.Library.Constant
RemoteServerIP, RemoteServerIP,
DBConnection, DBConnection,
GetServerSettings, GetServerSettings,
GameModuleList, SecretKey
GameMapList
} }
} }