/* Sog 游戏基础库 2016 by zouwei */ using System; using System.Collections.Generic; using ProtoCSStruct; using Sog; namespace Game { public class NameServerData : IServerDataObj { public ServerApp m_app; public StructPacketSender m_packetSender; public NameServerData(ServerApp app) { m_app = app; m_packetSender = new StructPacketSender(); m_packetSender.Init(app.ServerID, app.GetCluster()); } public override int GetDataType() { return 1; } } }