コード例 #1
0
 public EncounterResult(EncounterLoot loot, string title = null, string text = null, bool showTitle = true)
 {
     this.loot      = loot;
     this.title     = title;
     this.text      = text;
     this.showTitle = showTitle;
 }
コード例 #2
0
        public EncounterLoot ToEncounterLoot()
        {
            var loot = new EncounterLoot(experience);

            return(loot);
        }