10 lines
239 B
C#
10 lines
239 B
C#
using UnityEngine;
|
|
|
|
[CreateAssetMenu(fileName = "EntityData", menuName = "Scriptable Objects/EntityData")]
|
|
public class EntityData : ScriptableObject
|
|
{
|
|
public string entityName;
|
|
public int maxHealth;
|
|
public int attackDamage;
|
|
}
|