コード例 #1
0
        public Vote_HodlBot(Dictionary <int, VotingIncident> incidents, StorytellerPack pack, VoteLabelType labelType, string title = null) : base(incidents, title)
        {
            PickVoteLabelType(labelType);

            this.pack  = pack;
            this.title = title;
        }
コード例 #2
0
 public Vote_RaidStrategy(Dictionary <int, RaidStrategyDef> allStrategies, StorytellerPack pack, IncidentWorker worker, StorytellerComp comp, IncidentParms parms, string title = null) : base(new List <int>(allStrategies.Keys))
 {
     this.title         = title;
     this.allStrategies = allStrategies;
     this.pack          = pack;
     this.worker        = worker;
     this.parms         = parms;
     this.comp          = comp;
 }
コード例 #3
0
 public Vote_ToryTalker(Dictionary <int, VotingIncident> incidents, StorytellerPack pack, string title = null) : base(incidents, title)
 {
     this.title = title;
     this.pack  = pack;
 }
コード例 #4
0
 public Vote_HodlBot(Dictionary <int, VotingIncident> incidents, StorytellerPack pack, string title = null) : base(incidents, title)
 {
     this.pack  = pack;
     this.title = title;
     labelType  = VoteLabelType.Label;
 }