Advertisement
Guest User

DebugClearHighlightCellsMessage.cs

a guest
Jun 29th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.60 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using Past.Protocol;
  5. using Past.IO;
  6.  
  7. namespace Past.Protocol.Messages.debug
  8. {
  9.     public class DebugClearHighlightCellsMessage
  10.     {
  11.         public new const uint ID = 2002;
  12.         public override uint ProtocolID
  13.         {
  14.             get { return ID; }
  15.         }
  16.  
  17.  
  18.         public DebugClearHighlightCellsMessage()
  19.         {
  20.         }
  21.  
  22.  
  23.         public override void Serialize(BigEndianWriter writer)
  24.         {
  25.         }
  26.  
  27.         public override void Deserialize(BigEndianReader reader)
  28.         {
  29.         }
  30.  
  31.     }
  32.  
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement