summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/Chat/ChatItemInfo.cs
blob: 9aef7cc90852f752125680935f5aa995b6f1e2a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;

namespace XMainClient
{
	public class ChatItemInfo
	{
		public string itemInfoStr = "";

		public byte[] speakData;

		public string speakUrl;

		public bool isVoiceLocalPath = false;

		public bool isLeft = false;

		public int cachedPlayerID;

		public string cachedPlayerName;

		public int cachedTeamId;

		public bool cachedIsFriend = false;
	}
}