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.
 
 
 
 
 
 

45 lines
877 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Google.Protobuf.WellKnownTypes;
namespace SogClient
{
class TestChangeView : ITestMessage
{
public TestChangeView(Player player):base(player)
{
}
public override void HandlerMsg(RequestPacket packet)
{
TraceLog.Trace("recv message from server, message type {0}", packet.MsgID);
switch (packet.MsgID)
{
}
}
public override void MakeMsg()
{
throw new NotImplementedException();
}
public override void RegisterMsg(TestHandlerMgr mgr)
{
throw new NotImplementedException();
}
public override void Update(long nowSecond)
{
}
}
}