public TTTASRedemptionHandler(
     Core.ICommunication communication,
     ITTTASHandler tttasHandler,
     TTTASConfiguration tttasConfig,
     HelixHelper helixHelper)
 {
     this.communication = communication;
     this.tttasHandler  = tttasHandler;
     this.tttasConfig   = tttasConfig;
     this.helixHelper   = helixHelper;
 }
 public TTTASCommandSystem(
     ICommunication communication,
     ITTTASHandler tttasHandler,
     ITTTASProvider tttasProvider,
     TTTASConfiguration tttasConfig)
 {
     this.communication = communication;
     this.tttasHandler  = tttasHandler;
     this.tttasProvider = tttasProvider;
     this.tttasConfig   = tttasConfig;
 }
Ejemplo n.º 3
0
        public TTTASRenderer(
            ICommunication communication,
            ISoundEffectSystem soundEffectSystem,
            ITTTASProvider tttasProvider,
            TTTASConfiguration tttasConfig)
        {
            this.communication     = communication;
            this.soundEffectSystem = soundEffectSystem;
            this.tttasProvider     = tttasProvider;

            this.tttasConfig = tttasConfig;
        }
 public TTTASFullHandler(
     Core.ICommunication communication,
     Core.Notifications.FullActivityProvider fullActivityProvider,
     Core.Notifications.IActivityDispatcher activityDispatcher,
     Core.Audio.ISoundEffectSystem soundEffectSystem,
     ITTTASRenderer tttasRenderer,
     TTTASConfiguration tttasConfig)
 {
     this.communication        = communication;
     this.fullActivityProvider = fullActivityProvider;
     this.activityDispatcher   = activityDispatcher;
     this.soundEffectSystem    = soundEffectSystem;
     this.tttasRenderer        = tttasRenderer;
     this.tttasConfig          = tttasConfig;
 }