Added basic inventory system
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
#nullable enable
|
||||
namespace Babushka.scripts.CSharp.Common.Inventory;
|
||||
|
||||
public class InventorySlot
|
||||
{
|
||||
public ItemInstance? itemInstance;
|
||||
public bool IsEmpty()
|
||||
{
|
||||
return itemInstance == null;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user