20 lines
343 B
C#
20 lines
343 B
C#
using UnityEngine;
|
|
|
|
public class GameScene : BaseScene
|
|
{
|
|
|
|
protected override void Init()
|
|
{
|
|
base.Init();
|
|
|
|
_sceneType = Define.Scene.Game;
|
|
|
|
Managers.UI.ShowSceneUI<UI_Inven>("UI_Inven");
|
|
}
|
|
|
|
public override void Clear()
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
}
|