12 lines
180 B
C#
12 lines
180 B
C#
|
using UnityEngine;
|
||
|
|
||
|
namespace Item
|
||
|
{
|
||
|
public class ItemResource
|
||
|
{
|
||
|
public string name;
|
||
|
public string description;
|
||
|
|
||
|
public Sprite icon;
|
||
|
}
|
||
|
}
|