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
44 lines
829 B
C#
44 lines
829 B
C#
/*
|
|
* 由SharpDevelop创建。
|
|
* 用户: Administrator
|
|
* 日期: 2018-10-31
|
|
* 时间: 14:05
|
|
*
|
|
* 要改变这种模板请点击 工具|选项|代码编写|编辑标准头文件
|
|
*/
|
|
using System;
|
|
using System.Threading;
|
|
using Server.DB.Redis;
|
|
using MrWu.Debug;
|
|
using Server.Data.Module;
|
|
using Server.MQ;
|
|
using GameData;
|
|
|
|
namespace Server.Module
|
|
{
|
|
/// <summary>
|
|
/// 模块数据表 基类 具体模块继承该类
|
|
/// </summary>
|
|
public class ModuleDataTab : ModuleUtile
|
|
{
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="util"></param>
|
|
public ModuleDataTab(ModuleUtile util){
|
|
this.id = util.id;
|
|
this.ver = util.ver;
|
|
this.name = util.name;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 关闭服务器
|
|
/// </summary>
|
|
public virtual void Close(){
|
|
|
|
}
|
|
}
|
|
}
|
|
|