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