mirror of
http://47.107.252.169:3000/Roguelite-Game-Developing-Team/Gen_Hack-and-Slash-Roguelite.git
synced 2025-11-20 05:17:13 +08:00
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;
|
||
|
|
}
|
||
|
|
}
|