示例#1
0
 public Entry(
     IReadOnlyDropItemsList entryNestedList,
     DropItemConditionDelegate condition,
     DropItemRollFunctionDelegate rollFunction)
     : this(condition, rollFunction)
 {
     this.EntryNestedList = entryNestedList;
 }
示例#2
0
 public Entry(
     DropItem dropEntryItem,
     DropItemConditionDelegate condition,
     DropItemRollFunctionDelegate rollFunction)
     : this(condition, rollFunction)
 {
     this.EntryItem = dropEntryItem;
 }
示例#3
0
 public Entry(
     DropItemConditionDelegate condition,
     DropItemRollFunctionDelegate rollFunction)
     : this()
 {
     this.Condition    = condition;
     this.RollFunction = rollFunction;
 }