mirror of
https://github.com/DerTyp7/fps-citybuild-unity.git
synced 2025-10-30 12:37:08 +01:00
Added Basic ResourceManagement
This commit is contained in:
13
Assets/Scripts/Resources/Items/WoodItem.cs
Normal file
13
Assets/Scripts/Resources/Items/WoodItem.cs
Normal 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";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user