using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Google.Protobuf.WellKnownTypes; namespace SogClient { class GmCmd:ITestMessage { CSGmCmd m_Gm = new CSGmCmd(); public GmCmd(Player player) : base(player) { } public override void HandlerMsg(RequestPacket packet) { throw new NotImplementedException(); } public override void MakeMsg() { throw new NotImplementedException(); } public override void RegisterMsg(TestHandlerMgr mgr) { throw new NotImplementedException(); } public override void Update(long nowSecond) { throw new NotImplementedException(); } public void SendGm(string gmString) { m_Gm.CmdStr = gmString; SendToServer(m_Gm, (int)CSGameMsgID.Gmcmd); } } }