using System; public class TitleUpArrowCommand : TitleCommand { public void Init() { TitleUpArrowCommand.Instance = SingletonBase.Instance; } protected override void Execute() { BaseMgr.Instance.MovePreviousButton(); } public static TitleUpArrowCommand Instance; }