6 major server modules (PdkFriendServer/GlobalSever/ServerCore/GameModule/GameNetModule) + game logic (GameFix/GameDAL/ServerData) + network layer (NetWorkMessage) + data layer (ObjectModel) + utilities (MrWu/Core/Config/CloudAPI/dll) + adapters (zyxAdapter/base) .NET 8.0 C# solution, 16 projects, 958 source files
21 lines
408 B
C#
21 lines
408 B
C#
using System;
|
|
|
|
namespace GlobalSever.Form {
|
|
/// <summary>
|
|
/// 服务器代理
|
|
/// </summary>
|
|
public interface IServerProxy {
|
|
|
|
/// <summary>
|
|
/// 服务器启动
|
|
/// </summary>
|
|
bool Start(ServerForm fm);
|
|
|
|
/// <summary>
|
|
/// 关闭服务器
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
void Stop();
|
|
}
|
|
}
|