2025-10-08 16:31:53 +08:00

12 lines
321 B
C#

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;
}