Example #1
0
    //****************************************************************************************************
    //
    //****************************************************************************************************

    public void Update()
    {
        if (zoom <= MAP_ZOOM_VALUE_EXIT)
        {
            return;
        }

        if (m_refresh)
        {
            Refresh();
        }

        if (m_shouldReflectDB)
        {
            ReflectDB();
        }


        m_loadingIcon.Rotate();

        MonitorScreenChanges();

        UpdateInputs();

        UpdateCameraPosition();

        LoadMaps();

        UpdateMapObjectsSelection();
    }