示例#1
0
 public static ItemState CookedFish(CookedFishType type = CookedFishType.CookedFish)
 {
     return(new ItemState
     {
         Id = (uint)ItemId.CookedFish,
         MetaValue = (uint)type
     });
 }
示例#2
0
 public static ItemState CookedFish(CookedFishType type = CookedFishType.CookedFish)
 {
     return(new ItemState
     {
         Id = (uint)ItemId.CookedSalmon, // TODO: more kinds of cooked fish
         MetaValue = (uint)type
     });
 }