TigerProject/Assets/Scripts/Monster/EntityData.cs

9 lines
232 B
C#
Raw Normal View History

2026-01-20 10:06:03 +00:00
using UnityEngine;
[CreateAssetMenu(fileName = "EntityData", menuName = "Scriptable Objects/EntityData")]
public class EntityData : ScriptableObject
{
public string name;
public int maxHealth;
public int attackDamage;
2026-01-27 12:06:26 +00:00
}