Ejemplo n.º 1
0
        internal TimerCooldown(TwitchController twitchController)
        {
            controller        = twitchController;
            customTimerEvents = new List <CustomEvent>();
            actionQueueEvents = new List <KeyValuePair <string, CustomEvent> >();
            cooldownEvents    = new List <KeyValuePair <string, CustomEvent> >();

            controller.eventLookup.ActionQueue       = new List <KeyValuePair <string, EventInfo> >();
            controller.eventLookup.Cooldowns         = new Dictionary <string, float>();
            controller.eventLookup.RunningEventIDs   = new List <string>();
            controller.eventLookup.TimedActionsQueue = new List <Action>();
        }
Ejemplo n.º 2
0
 public TwitchEventManager(TwitchController twitchController)
 {
     controller = twitchController;
 }
Ejemplo n.º 3
0
 public TwitchPubSubClient(TwitchController twitchController)
 {
     controller = twitchController;
 }
Ejemplo n.º 4
0
 public TwitchChatClient(TwitchController twitchController)
 {
     controller = twitchController;
 }