예제 #1
0
 protected bool Equals(ItemFunction other)
 {
     return(Name == other.Name &&
            Id == other.Id &&
            Duration == other.Duration &&
            FieldId == other.FieldId &&
            Capacity == other.Capacity &&
            TargetLevel == other.TargetLevel &&
            Count == other.Count &&
            TotalUser == other.TotalUser);
 }
예제 #2
0
 // Required for deserialization
 public ItemMetadata()
 {
     Content      = new List <ItemContent>();
     BreakRewards = new List <ItemBreakReward>();
     FunctionData = new ItemFunction();
 }
예제 #3
0
 // Required for deserialization
 public ItemMetadata()
 {
     BreakRewards = new List <ItemBreakReward>();
     FunctionData = new ItemFunction();
 }
예제 #4
0
 protected bool Equals(ItemFunction other)
 {
     return(Name == other.Name &&
            Id == other.Id);
 }