This commit is contained in:
Janis
2023-02-20 18:37:32 +01:00
parent e215afc534
commit b92e575f71
4 changed files with 36 additions and 3 deletions

12
Assets/Scripts/Item.cs Normal file
View File

@@ -0,0 +1,12 @@
using UnityEngine;
using System;
using System.Collections;
using System.Collections.Generic;
[CreateAssetMenu(fileName = "Item", menuName = "Harvestdale/Items/Item", order = 0)]
public class Item : ScriptableObject
{
public string uuid;
public string itemName;
public int quantity = 1;
}