Exemple #1
0
	public ChatData(string playName, string text, enumChatType chatType, enumSysInfoType systemType, byte[] voiceData,float time,long userID) {
		this.playName = playName;
		this.text = SetTextColor(text, chatType);
		this.chatType = chatType;
		this.systemType = systemType;
		this.voiceData = voiceData;
		this.time = time;
		this.userID = userID;
	}
Exemple #2
0
 public ChatData(string playName, string text, enumChatType chatType, enumSysInfoType systemType, byte[] voiceData, float time, long userID)
 {
     this.playName   = playName;
     this.text       = SetTextColor(text, chatType);
     this.chatType   = chatType;
     this.systemType = systemType;
     this.voiceData  = voiceData;
     this.time       = time;
     this.userID     = userID;
 }
Exemple #3
0
	public ChatData(string playName, string text, enumChatType chatType, enumSysInfoType systemType)
		: this(playName, text, chatType, systemType, null, 0, 0) {
	}
Exemple #4
0
 public ChatData(string playName, string text, enumChatType chatType, enumSysInfoType systemType)
     : this(playName, text, chatType, systemType, null, 0, 0)
 {
 }