예제 #1
0
 public ChatAction(TwitchChannel channel, MainWindow controller, TwitchUser user, string message)
     : base(channel, controller, ItemType.Action, user, message)
 {
 }
예제 #2
0
 public StatusMessage(TwitchChannel channel, MainWindow controller, string message)
     : base(channel, controller, ItemType.Status)
 {
     Message = message;
 }
예제 #3
0
 public ChatMessage(TwitchChannel channel, MainWindow controller, TwitchUser user, string message, bool question)
     : base(channel, controller, question ? ItemType.Question : ItemType.Message)
 {
     User = user;
     Message = message;
 }
예제 #4
0
 public ChatMessage(TwitchChannel channel, MainWindow controller, ItemType type, TwitchUser user, string message)
     : base(channel, controller, type)
 {
     User = user;
     Message = message;
 }
예제 #5
0
 public ChatItem(TwitchChannel channel, MainWindow controller, ItemType type)
 {
     Channel = channel;
     Controller = controller;
     Type = type;
 }
예제 #6
0
 public Subscriber(TwitchChannel channel, MainWindow controller, TwitchUser user)
     : base(channel, controller, ItemType.Subscriber)
 {
     User = user;
 }
예제 #7
0
 public Subscriber(MainWindow controller, TwitchUser user)
     : base(controller, ItemType.Subscriber)
 {
     User = user;
 }
예제 #8
0
 public ChatItem(MainWindow controller, ItemType type)
 {
     Controller = controller;
     Type = type;
     Time = DateTime.Now;
 }
예제 #9
0
 public ChatAction(TwitchChannel channel, MainWindow controller, TwitchUser user, string message)
     : base(channel, controller, ItemType.Action, user, message)
 {
 }
예제 #10
0
 public StatusMessage(MainWindow controller, string message)
     : base(controller, ItemType.Status)
 {
     Message = message;
 }
예제 #11
0
 public ChatMessage(TwitchChannel channel, MainWindow controller, ItemType type, TwitchUser user, string message)
     : base(channel, controller, type)
 {
     User    = user;
     Message = message;
 }
예제 #12
0
 public ChatMessage(TwitchChannel channel, MainWindow controller, TwitchUser user, string message, bool question)
     : base(channel, controller, question ? ItemType.Question : ItemType.Message)
 {
     User    = user;
     Message = message;
 }
예제 #13
0
 public Subscriber(TwitchChannel channel, MainWindow controller, TwitchUser user)
     : base(channel, controller, ItemType.Subscriber)
 {
     User = user;
 }
예제 #14
0
 public ChatItem(TwitchChannel channel, MainWindow controller, ItemType type)
 {
     Channel    = channel;
     Controller = controller;
     Type       = type;
 }
예제 #15
0
 public StatusMessage(TwitchChannel channel, MainWindow controller, string message)
     : base(channel, controller, ItemType.Status)
 {
     Message = message;
 }