예제 #1
0
 public void WriteChatLogEntry(ChatLogEntry chatLogEntry)
 {
     chatLog.WriteEntry(chatLogEntry);
 }
예제 #2
0
        public void AddMessage(string playerName, string message, Color color)
        {
            ChatLogEntry entry = new ChatLogEntry(playerName, message, color);

            ChatLog.WriteEntry(entry);
        }