using UnityEngine;
// Example: PlayerData.cs
[CreateAssetMenu(fileName = "PlayerData", menuName = "Game Data/Player")]
public class PlayerData : ScriptableObject
{
public string playerName;
public int level;
public int health;
}
Powered by TurnKey Linux.