mirror of
https://github.com/DerTyp7/fps-citybuild-unity.git
synced 2025-10-30 04:27:09 +01:00
14 lines
227 B
C#
14 lines
227 B
C#
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";
|
|
}
|
|
}
|