private void SendInput()
        {
            m_bLastInputSent = (byte)((m_bLastInputSent + 1) % byte.MaxValue);

            m_conConnection1.QueuePacketToSend(new InputPacket(m_bLastInputSent, m_iTick));
            m_dicInputCompare[m_bLastInputSent] = m_iTick;
        }