コード例 #1
0
ファイル: PlayerChatManager.cs プロジェクト: tonydhx/Nitrox
 public void WriteChatLogEntry(ChatLogEntry chatLogEntry)
 {
     chatLog.WriteEntry(chatLogEntry);
 }
コード例 #2
0
ファイル: PlayerChat.cs プロジェクト: nallston/Nitrox
        public void AddMessage(string playerName, string message, Color color)
        {
            ChatLogEntry entry = new ChatLogEntry(playerName, message, color);

            ChatLog.WriteEntry(entry);
        }