15 lines
266 B
C#
15 lines
266 B
C#
using UnityEngine;
|
|
|
|
namespace Kryz.CharacterStats.Examples
|
|
{
|
|
[CreateAssetMenu]
|
|
public class Item : ScriptableObject
|
|
{
|
|
public string ItemName;
|
|
public Sprite Icon;
|
|
public int sellPricePlayer;
|
|
public int sellPriceVendor;
|
|
public string description;
|
|
}
|
|
}
|