TigerProject/Assets/Scripts/Monster/EntityData.cs

9 lines
238 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
{
2026-01-27 10:20:36 +00:00
public string entityName;
public int maxHealth;
public int attackDamage;
2026-01-27 12:06:26 +00:00
}