Added Basic ResourceManagement

This commit is contained in:
DerTyp187
2021-09-30 20:44:50 +02:00
parent 4136dec646
commit 15203c52ad
22 changed files with 347 additions and 66 deletions

View File

@@ -0,0 +1,13 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class WoodItem : Item
{
public WoodItem(int c = 1)
{
count = c;
name = "Wood";
uuid = "item_wood";
}
}