Protocol.cs 368 B

1234567891011121314151617
  1. using DeepMMO.Attributes;
  2. using DeepMMO.Protocol;
  3. namespace DeepMMO.Server.GameEvent
  4. {
  5. [ProtocolRoute("*", "*")]
  6. public class ServerGameEventNotify : Notify
  7. {
  8. public string From;
  9. public string To;
  10. public bool Broadcast;
  11. public string ServerGroupID;
  12. public byte[] EventMessageData;
  13. }
  14. }