private void UpdateLatestInputList()
    {
        if (inputQueueIndex >= theInputReaderController.CheckQueueLength())
        {
            return;
        }

        latestInputList =
            theInputReaderController.CheckInput(inputQueueIndex);
        ++inputQueueIndex;
    }