예제 #1
0
 public ItemEntrySummary(LocalText name, bool released, string comment, ItemData.UseType useType) : base(name, released, comment)
 {
     UsageType = useType;
 }
예제 #2
0
 public ItemThemeType(ItemData.UseType useType, bool mapItems, bool specialItems, RandRange amount) : base(amount)
 {
     UseType         = useType;
     UseMapItems     = mapItems;
     UseSpecialItems = specialItems;
 }
예제 #3
0
 protected ItemThemeType(ItemThemeType other) : base(other)
 {
     UseType         = other.UseType;
     UseMapItems     = other.UseMapItems;
     UseSpecialItems = other.UseSpecialItems;
 }
예제 #4
0
 public ItemEntrySummary(LocalText name, bool released, string comment, ItemData.UseType useType) : base(name, released, comment)
 {
     UsageType = useType;
     States    = new List <FlagType>();
 }