BotMessageC2B.cs 559 B

12345678910111213141516171819202122
  1. using CommonLang.IO.Attribute;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using CommonLang.IO;
  7. using CommonAI.Zone;
  8. namespace XmdsCommonServer.Message
  9. {
  10. //机器人专用消息,只允许机器人测试发送
  11. public interface IBotMessageC2B
  12. {
  13. }
  14. [MessageType((0xFC00000))]
  15. public class MarkForTestBotAction : ObjectAction, IBotMessageC2B
  16. {
  17. public override void ReadExternal(IInputStream input) { }
  18. public override void WriteExternal(IOutputStream output) { }
  19. }
  20. }