Exemple #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>();
        }
Exemple #2
0
 public TwitchEventManager(TwitchController twitchController)
 {
     controller = twitchController;
 }
Exemple #3
0
 public TwitchPubSubClient(TwitchController twitchController)
 {
     controller = twitchController;
 }
 public TwitchChatClient(TwitchController twitchController)
 {
     controller = twitchController;
 }