using System.Collections; using System.Collections.Generic; using UnityEngine; [CreateAssetMenu(fileName = "DefaultDungeon", menuName = "Game/03_data")] public class DefaultDungeon : ScriptableObject { public string playerName; public int playerScore; public float playerHealth; public int playerLevel; }