public bool InputTick()
    {
        bool canMoveOn = CanDoNextStep();

        if (canMoveOn)
        {
            _inputTickCount++;
            actionSystem.performAction();
        }

        return(canMoveOn);
    }