mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-22 12:09:34 +08:00
23 lines
652 B
C#
23 lines
652 B
C#
namespace Milimoe.FunGame.Core.Interface
|
|
{
|
|
/**
|
|
* 接口需要在FunGame.Core项目中Implement文件夹创建新的类实现
|
|
* 参考:
|
|
* using Milimoe.FunGame.Core.Interface;
|
|
|
|
namespace Milimoe.FunGame.Core.Implement
|
|
{
|
|
public class IClientImpl : IClient
|
|
{
|
|
public string RemoteServerIP()
|
|
{
|
|
// 此处修改连接远程服务器IP
|
|
string serverIP = "127.0.0.1";
|
|
string serverPort = "22222";
|
|
return serverIP + ":" + serverPort;
|
|
}
|
|
}
|
|
}
|
|
*/
|
|
}
|