12345678910111213141516171819202122 |
- using CommonLang.IO.Attribute;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using CommonLang.IO;
- using CommonAI.Zone;
- namespace XmdsCommonServer.Message
- {
- //机器人专用消息,只允许机器人测试发送
- public interface IBotMessageC2B
- {
- }
- [MessageType((0xFC00000))]
- public class MarkForTestBotAction : ObjectAction, IBotMessageC2B
- {
- public override void ReadExternal(IInputStream input) { }
- public override void WriteExternal(IOutputStream output) { }
- }
- }
|