コード例 #1
0
    public override void enable()
    {
        input_handler = new TitleScreenInput();
        input_handler.addObserver(this);

        //skip to game
        current_state = EXPIRED;
        next_event    = "GAME";
    }
コード例 #2
0
 public TitleScreenActions(TitleScreenInput wrapper)
 {
     m_Wrapper = wrapper;
 }
コード例 #3
0
 private void Awake()
 {
     inputAction = new TitleScreenInput();
     inputAction.TitleScreen.Enter.performed += ctx => Transition();
 }