Exemplo n.º 1
0
        public PlayerChattedEventArgs(ChatMessageBuilder builder, TSPlayer player, Dictionary <string, string> chatDictionary, Dictionary <string, Color?> colorDictionary)
        {
            Message = builder;
            Player  = player;

            ChatFormatters  = chatDictionary;
            ColorFormatters = colorDictionary;
        }
 public PlayerChattingEventArgs(ChatMessageBuilder builder, TSPlayer player, string rawText)
 {
     Message = builder;
     Player  = player;
     RawText = rawText;
 }