TitleUpArrowCommand.cs 313 B

12345678910111213141516
  1. using System;
  2. public class TitleUpArrowCommand : TitleCommand
  3. {
  4. public void Init()
  5. {
  6. TitleUpArrowCommand.Instance = SingletonBase<TitleUpArrowCommand>.Instance;
  7. }
  8. protected override void Execute()
  9. {
  10. BaseMgr<TitleMgr>.Instance.MovePreviousButton();
  11. }
  12. public static TitleUpArrowCommand Instance;
  13. }