Unity_Learn/Assets/Scripts/Scenes/GameScene.cs
2025-09-21 23:56:27 +09:00

26 lines
529 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class GameScene : BaseScene
{
protected override void Init()
{
base.Init();
_sceneType = Define.Scene.Game;
Managers.UI.ShowSceneUI<UI_Inven>("UI_Inven");
Dictionary<int, Data.Status> dict = Managers.Data.StatusDict;
gameObject.GetOrAddComponent<CursorController>();
}
public override void Clear()
{
throw new System.NotImplementedException();
}
}