using UnityEngine; [CreateAssetMenu(fileName = "PlayerLeveling", menuName = "Scriptable Objects/PlayerLeveling")] public class PlayerLeveling : ScriptableObject { public int playerLevel; public int currentXP; public int xpNeededForNextLevel; public AnimationCurve xpCurve; }