You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1013 B
53 lines
1013 B
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|