TigerProject/Assets/Scripts/Monster/EntityData.cs
qoralstmd6825 7449deee12 Map Generator Added
맵 생성기 제작했습니다.
2026-01-26 18:07:09 +09:00

10 lines
233 B
C#

using UnityEngine;
[CreateAssetMenu(fileName = "EntityData", menuName = "Scriptable Objects/EntityData")]
public class EntityData : ScriptableObject
{
public string name;
public int maxHealth;
public int attackDamage;
}