TigerProject/Assets/Scripts/EntityData.cs

10 lines
243 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 entityName;
public float maxHealth;
public float attackDamage;
}