예제 #1
0
		public void Deserialize( Stream stream )
		{
			BinaryReader br = new BinaryReader( stream );

			steamIdChat = br.ReadUInt64();
			steamIdUserToActOn = br.ReadUInt64();
			ChatAction = (EChatAction)br.ReadInt32();
		}
예제 #2
0
		public MsgClientChatAction()
		{
			steamIdChat = 0;
			steamIdUserToActOn = 0;
			ChatAction = 0;
		}