13 lines
247 B
C#
13 lines
247 B
C#
|
using HK;
|
|||
|
|
|||
|
namespace Runtime.Produce
|
|||
|
{
|
|||
|
public class StartGameProcedure : ProcedureBase
|
|||
|
{
|
|||
|
public override void Init()
|
|||
|
{
|
|||
|
base.Init();
|
|||
|
UIManager.Instance.ShowUIOnly(nameof(HomeUI));
|
|||
|
}
|
|||
|
}
|
|||
|
}
|