Ejemplo n.º 1
0
		public void Deserialize( Stream stream )
		{
			BinaryReader br = new BinaryReader( stream );

			steamIdChat = br.ReadUInt64();
			steamIdUserToActOn = br.ReadUInt64();
			ChatAction = (EChatAction)br.ReadInt32();
		}
Ejemplo n.º 2
0
		public MsgClientChatAction()
		{
			steamIdChat = 0;
			steamIdUserToActOn = 0;
			ChatAction = 0;
		}