reworked inv

This commit is contained in:
j.mei7
2022-02-21 21:16:29 +01:00
parent faf55bfb89
commit 65d6af578d
19 changed files with 364 additions and 253 deletions

View File

@@ -0,0 +1,11 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu(fileName = "ResourceItem", menuName = "Items/ResourceItem", order = 2)]
public class ResourceItem : Item
{
public override void OnSelect()
{
throw new System.NotImplementedException();
}
}