TigerProject/Assets/Scripts/Monster/EntityData.cs

9 lines
232 B
C#

using UnityEngine;
[CreateAssetMenu(fileName = "EntityData", menuName = "Scriptable Objects/EntityData")]
public class EntityData : ScriptableObject
{
public string name;
public int maxHealth;
public int attackDamage;
}