Trevor J McDonald
4 年前
当前提交
820cf542
共有 3 个文件被更改,包括 62 次插入 和 62 次删除
-
14UOP1_Project/Assets/Scripts/Inventory/ItemStack.cs
-
108UOP1_Project/Assets/Scripts/Inventory/ScriptableObjects/Inventory.cs
-
2UOP1_Project/Assets/Scripts/Inventory/ScriptableObjects/ItemType.cs
|
|||
public class ItemStack |
|||
{ |
|||
public Item Item { get; } |
|||
public Item Item { get; } |
|||
public int Amount { get; set; } |
|||
public int Amount { get; set; } |
|||
public ItemStack(Item item, int amount) |
|||
{ |
|||
Item = item; |
|||
Amount = amount; |
|||
} |
|||
public ItemStack(Item item, int amount) |
|||
{ |
|||
Item = item; |
|||
Amount = amount; |
|||
} |
|||
} |
撰写
预览
正在加载...
取消
保存
Reference in new issue