public void WriteChatLogEntry(ChatLogEntry chatLogEntry) { chatLog.WriteEntry(chatLogEntry); }
public void AddMessage(string playerName, string message, Color color) { ChatLogEntry entry = new ChatLogEntry(playerName, message, color); chatLog.WriteEntry(entry); }