public RivalAIModChatMessage(string author, string msg, long playerId, RivalAIModChatType type) { Author = author; Message = msg; RecipientPlayerId = playerId; MessageType = type; }
public RivalAIModChatMessage() { Author = ""; Message = ""; RecipientPlayerId = 0; MessageType = RivalAIModChatType.None; }