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; }
public EncounterLoot ToEncounterLoot() { var loot = new EncounterLoot(experience); return(loot); }