├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake ├── FindCocoa.cmake ├── FindCoreVideo.cmake ├── FindIOKit.cmake └── FindPkgMacros.cmake ├── download_icon.sh ├── libs ├── eglut │ ├── eglut.c │ ├── eglut.h │ ├── eglut_wayland.c │ ├── eglut_x11.c │ ├── eglut_x11.h │ └── eglutint.h ├── elf │ └── elf.h ├── epoll │ ├── CMakeLists.txt │ ├── LICENSE │ ├── NOTICE │ ├── doc │ │ ├── musl │ │ │ └── COPYRIGHT │ │ └── poll.txt │ ├── include │ │ └── sys │ │ │ ├── epoll.h │ │ │ ├── signalfd.h │ │ │ └── timerfd.h │ └── src │ │ ├── CMakeLists.txt │ │ ├── common.c │ │ ├── epoll.c │ │ └── signalfd.c ├── hybris │ ├── include │ │ └── hybris │ │ │ ├── binding.h │ │ │ ├── dlfcn.h │ │ │ ├── floating_point_abi.h │ │ │ ├── hook.h │ │ │ └── properties.h │ └── src │ │ ├── cache.c │ │ ├── ctype.c │ │ ├── ctype.h │ │ ├── dlfcn.c │ │ ├── hooks.c │ │ ├── hooks_darwin_pthread_once.cpp │ │ ├── hooks_darwin_pthread_once.h │ │ ├── hooks_dirent.c │ │ ├── hooks_io.c │ │ ├── hooks_net.c │ │ ├── hooks_net.h │ │ ├── hooks_net_darwin.c │ │ ├── hooks_pthread.c │ │ ├── hooks_shm.c │ │ ├── hooks_shm.h │ │ ├── jb │ │ ├── arch │ │ │ ├── arm │ │ │ │ └── begin.S │ │ │ └── x86 │ │ │ │ └── begin.S │ │ ├── debugger.c │ │ ├── dlfcn.c │ │ ├── linker.c │ │ ├── linker.h │ │ ├── linker_debug.h │ │ ├── linker_environ.c │ │ ├── linker_environ.h │ │ ├── linker_format.c │ │ ├── linker_format.h │ │ └── rt.c │ │ ├── logging.c │ │ ├── logging.h │ │ ├── properties.c │ │ ├── properties_p.h │ │ ├── strlcpy.c │ │ └── sysconf.c ├── mod_stub_lib │ └── jni │ │ ├── Android.mk │ │ ├── Application.mk │ │ └── main.c └── rapidxml │ ├── license.txt │ ├── rapidxml.hpp │ ├── rapidxml_iterators.hpp │ ├── rapidxml_print.hpp │ └── rapidxml_utils.hpp ├── mcpelauncher.desktop ├── mod_example ├── README.md └── jni │ ├── Android.mk │ ├── Application.mk │ ├── main.cpp │ └── mcpelauncher_api.h ├── setup_bin_libs.sh ├── setup_cef.sh ├── src ├── client │ ├── amdfix.s │ ├── appplatform.cpp │ ├── appplatform.h │ ├── fake_jni.cpp │ ├── fake_jni.h │ ├── gamepad.cpp │ ├── gamepad.h │ ├── main.cpp │ ├── store.h │ ├── xboxlive.cpp │ └── xboxlive.h ├── common │ ├── async_result_util.h │ ├── base64.cpp │ ├── base64.h │ ├── cll.cpp │ ├── cll.h │ ├── common.cpp │ ├── common.h │ ├── extract.cpp │ ├── extract.h │ ├── hook.cpp │ ├── hook.h │ ├── log.cpp │ ├── log.h │ ├── modloader.cpp │ ├── modloader.h │ ├── openssl_multithread.cpp │ ├── openssl_multithread.h │ ├── path_helper.cpp │ ├── path_helper.h │ └── symbols │ │ ├── android_symbols.h │ │ ├── egl_symbols.h │ │ ├── fmod_symbols.h │ │ └── libm_symbols.h ├── minecraft │ ├── Api.h │ ├── App.h │ ├── AppPlatform.h │ ├── AppResourceLoader.h │ ├── AutomationClient.h │ ├── CommandOutput.h │ ├── CommandOutputSender.h │ ├── Common.h │ ├── DedicatedServerCommandOrigin.h │ ├── ExternalFileLevelStorageSource.h │ ├── FilePathManager.h │ ├── FilePickerSettings.h │ ├── GameControllerManager.h │ ├── I18n.h │ ├── IMinecraftApp.h │ ├── ImagePickingCallback.h │ ├── Keyboard.h │ ├── LevelSettings.h │ ├── Minecraft.h │ ├── MinecraftCommands.h │ ├── MinecraftEventing.h │ ├── MinecraftGame.h │ ├── Mouse.h │ ├── MultiplayerService.h │ ├── OpsList.h │ ├── Options.h │ ├── Resource.h │ ├── ResourcePack.h │ ├── ResourcePackStack.h │ ├── SaveTransactionManager.h │ ├── Scheduler.h │ ├── ServerInstance.h │ ├── UUID.h │ ├── UserManager.h │ ├── Whitelist.h │ ├── Xbox.h │ ├── gl.h │ ├── std │ │ ├── function.h │ │ ├── function_darwin.h │ │ ├── string.h │ │ ├── string_darwin.cpp │ │ ├── string_darwin.h │ │ ├── string_linux.cpp │ │ └── string_linux.h │ ├── symbols.cpp │ └── symbols.h ├── msa │ ├── msa.cpp │ ├── msa.h │ ├── msa_network.cpp │ ├── msa_network.h │ └── msa_token.h ├── server │ ├── server.cpp │ ├── server_minecraft_app.h │ ├── server_properties.cpp │ ├── server_properties.h │ └── stub_key_provider.h └── ui │ ├── browser │ ├── browser.cpp │ ├── browser.h │ ├── gamepad_mapper_browser.cpp │ ├── gamepad_mapper_browser.h │ ├── google_login_browser.cpp │ ├── google_login_browser.h │ ├── google_play_helper.cpp │ ├── google_play_helper.h │ ├── initial_setup_browser.cpp │ ├── initial_setup_browser.h │ ├── resources │ │ ├── circular_progress.js │ │ ├── gamepad_mapper │ │ │ ├── GamepadXbox.svg │ │ │ └── index.html │ │ └── initial_setup │ │ │ ├── index.html │ │ │ └── style.css │ ├── xbox_login_browser.cpp │ └── xbox_login_browser.h │ ├── file_picker │ ├── file_picker.h │ ├── file_picker_factory.cpp │ ├── file_picker_factory.h │ ├── file_picker_zenity.cpp │ └── file_picker_zenity.h │ └── game_window │ ├── window.h │ ├── window_eglut.cpp │ ├── window_eglut.h │ ├── window_glfw.cpp │ └── window_glfw.h ├── start_mcpelauncher.sh └── tools ├── cppheaderparser ├── CppHeaderParser.py └── __init__.py └── process_headers.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/README.md -------------------------------------------------------------------------------- /cmake/FindCocoa.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/cmake/FindCocoa.cmake -------------------------------------------------------------------------------- /cmake/FindCoreVideo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/cmake/FindCoreVideo.cmake -------------------------------------------------------------------------------- /cmake/FindIOKit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/cmake/FindIOKit.cmake -------------------------------------------------------------------------------- /cmake/FindPkgMacros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/cmake/FindPkgMacros.cmake -------------------------------------------------------------------------------- /download_icon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/download_icon.sh -------------------------------------------------------------------------------- /libs/eglut/eglut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/eglut/eglut.c -------------------------------------------------------------------------------- /libs/eglut/eglut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/eglut/eglut.h -------------------------------------------------------------------------------- /libs/eglut/eglut_wayland.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/eglut/eglut_wayland.c -------------------------------------------------------------------------------- /libs/eglut/eglut_x11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/eglut/eglut_x11.c -------------------------------------------------------------------------------- /libs/eglut/eglut_x11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/eglut/eglut_x11.h -------------------------------------------------------------------------------- /libs/eglut/eglutint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/eglut/eglutint.h -------------------------------------------------------------------------------- /libs/elf/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/elf/elf.h -------------------------------------------------------------------------------- /libs/epoll/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/epoll/CMakeLists.txt -------------------------------------------------------------------------------- /libs/epoll/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/epoll/LICENSE -------------------------------------------------------------------------------- /libs/epoll/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/epoll/NOTICE -------------------------------------------------------------------------------- /libs/epoll/doc/musl/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/epoll/doc/musl/COPYRIGHT -------------------------------------------------------------------------------- /libs/epoll/doc/poll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/epoll/doc/poll.txt -------------------------------------------------------------------------------- /libs/epoll/include/sys/epoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/epoll/include/sys/epoll.h -------------------------------------------------------------------------------- /libs/epoll/include/sys/signalfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/epoll/include/sys/signalfd.h -------------------------------------------------------------------------------- /libs/epoll/include/sys/timerfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/epoll/include/sys/timerfd.h -------------------------------------------------------------------------------- /libs/epoll/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/epoll/src/CMakeLists.txt -------------------------------------------------------------------------------- /libs/epoll/src/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/epoll/src/common.c -------------------------------------------------------------------------------- /libs/epoll/src/epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/epoll/src/epoll.c -------------------------------------------------------------------------------- /libs/epoll/src/signalfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/epoll/src/signalfd.c -------------------------------------------------------------------------------- /libs/hybris/include/hybris/binding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/include/hybris/binding.h -------------------------------------------------------------------------------- /libs/hybris/include/hybris/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/include/hybris/dlfcn.h -------------------------------------------------------------------------------- /libs/hybris/include/hybris/floating_point_abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/include/hybris/floating_point_abi.h -------------------------------------------------------------------------------- /libs/hybris/include/hybris/hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/include/hybris/hook.h -------------------------------------------------------------------------------- /libs/hybris/include/hybris/properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/include/hybris/properties.h -------------------------------------------------------------------------------- /libs/hybris/src/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/cache.c -------------------------------------------------------------------------------- /libs/hybris/src/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/ctype.c -------------------------------------------------------------------------------- /libs/hybris/src/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/ctype.h -------------------------------------------------------------------------------- /libs/hybris/src/dlfcn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/dlfcn.c -------------------------------------------------------------------------------- /libs/hybris/src/hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/hooks.c -------------------------------------------------------------------------------- /libs/hybris/src/hooks_darwin_pthread_once.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/hooks_darwin_pthread_once.cpp -------------------------------------------------------------------------------- /libs/hybris/src/hooks_darwin_pthread_once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/hooks_darwin_pthread_once.h -------------------------------------------------------------------------------- /libs/hybris/src/hooks_dirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/hooks_dirent.c -------------------------------------------------------------------------------- /libs/hybris/src/hooks_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/hooks_io.c -------------------------------------------------------------------------------- /libs/hybris/src/hooks_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/hooks_net.c -------------------------------------------------------------------------------- /libs/hybris/src/hooks_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/hooks_net.h -------------------------------------------------------------------------------- /libs/hybris/src/hooks_net_darwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/hooks_net_darwin.c -------------------------------------------------------------------------------- /libs/hybris/src/hooks_pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/hooks_pthread.c -------------------------------------------------------------------------------- /libs/hybris/src/hooks_shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/hooks_shm.c -------------------------------------------------------------------------------- /libs/hybris/src/hooks_shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/hooks_shm.h -------------------------------------------------------------------------------- /libs/hybris/src/jb/arch/arm/begin.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/jb/arch/arm/begin.S -------------------------------------------------------------------------------- /libs/hybris/src/jb/arch/x86/begin.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/jb/arch/x86/begin.S -------------------------------------------------------------------------------- /libs/hybris/src/jb/debugger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/jb/debugger.c -------------------------------------------------------------------------------- /libs/hybris/src/jb/dlfcn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/jb/dlfcn.c -------------------------------------------------------------------------------- /libs/hybris/src/jb/linker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/jb/linker.c -------------------------------------------------------------------------------- /libs/hybris/src/jb/linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/jb/linker.h -------------------------------------------------------------------------------- /libs/hybris/src/jb/linker_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/jb/linker_debug.h -------------------------------------------------------------------------------- /libs/hybris/src/jb/linker_environ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/jb/linker_environ.c -------------------------------------------------------------------------------- /libs/hybris/src/jb/linker_environ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/jb/linker_environ.h -------------------------------------------------------------------------------- /libs/hybris/src/jb/linker_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/jb/linker_format.c -------------------------------------------------------------------------------- /libs/hybris/src/jb/linker_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/jb/linker_format.h -------------------------------------------------------------------------------- /libs/hybris/src/jb/rt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/jb/rt.c -------------------------------------------------------------------------------- /libs/hybris/src/logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/logging.c -------------------------------------------------------------------------------- /libs/hybris/src/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/logging.h -------------------------------------------------------------------------------- /libs/hybris/src/properties.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/properties.c -------------------------------------------------------------------------------- /libs/hybris/src/properties_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/properties_p.h -------------------------------------------------------------------------------- /libs/hybris/src/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/strlcpy.c -------------------------------------------------------------------------------- /libs/hybris/src/sysconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/hybris/src/sysconf.c -------------------------------------------------------------------------------- /libs/mod_stub_lib/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/mod_stub_lib/jni/Android.mk -------------------------------------------------------------------------------- /libs/mod_stub_lib/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/mod_stub_lib/jni/Application.mk -------------------------------------------------------------------------------- /libs/mod_stub_lib/jni/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/mod_stub_lib/jni/main.c -------------------------------------------------------------------------------- /libs/rapidxml/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/rapidxml/license.txt -------------------------------------------------------------------------------- /libs/rapidxml/rapidxml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/rapidxml/rapidxml.hpp -------------------------------------------------------------------------------- /libs/rapidxml/rapidxml_iterators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/rapidxml/rapidxml_iterators.hpp -------------------------------------------------------------------------------- /libs/rapidxml/rapidxml_print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/rapidxml/rapidxml_print.hpp -------------------------------------------------------------------------------- /libs/rapidxml/rapidxml_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/libs/rapidxml/rapidxml_utils.hpp -------------------------------------------------------------------------------- /mcpelauncher.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/mcpelauncher.desktop -------------------------------------------------------------------------------- /mod_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/mod_example/README.md -------------------------------------------------------------------------------- /mod_example/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/mod_example/jni/Android.mk -------------------------------------------------------------------------------- /mod_example/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/mod_example/jni/Application.mk -------------------------------------------------------------------------------- /mod_example/jni/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/mod_example/jni/main.cpp -------------------------------------------------------------------------------- /mod_example/jni/mcpelauncher_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/mod_example/jni/mcpelauncher_api.h -------------------------------------------------------------------------------- /setup_bin_libs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/setup_bin_libs.sh -------------------------------------------------------------------------------- /setup_cef.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/setup_cef.sh -------------------------------------------------------------------------------- /src/client/amdfix.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/client/amdfix.s -------------------------------------------------------------------------------- /src/client/appplatform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/client/appplatform.cpp -------------------------------------------------------------------------------- /src/client/appplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/client/appplatform.h -------------------------------------------------------------------------------- /src/client/fake_jni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/client/fake_jni.cpp -------------------------------------------------------------------------------- /src/client/fake_jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/client/fake_jni.h -------------------------------------------------------------------------------- /src/client/gamepad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/client/gamepad.cpp -------------------------------------------------------------------------------- /src/client/gamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/client/gamepad.h -------------------------------------------------------------------------------- /src/client/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/client/main.cpp -------------------------------------------------------------------------------- /src/client/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/client/store.h -------------------------------------------------------------------------------- /src/client/xboxlive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/client/xboxlive.cpp -------------------------------------------------------------------------------- /src/client/xboxlive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/client/xboxlive.h -------------------------------------------------------------------------------- /src/common/async_result_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/common/async_result_util.h -------------------------------------------------------------------------------- /src/common/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/common/base64.cpp -------------------------------------------------------------------------------- /src/common/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/common/base64.h -------------------------------------------------------------------------------- /src/common/cll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/common/cll.cpp -------------------------------------------------------------------------------- /src/common/cll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/common/cll.h -------------------------------------------------------------------------------- /src/common/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/common/common.cpp -------------------------------------------------------------------------------- /src/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/common/common.h -------------------------------------------------------------------------------- /src/common/extract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/common/extract.cpp -------------------------------------------------------------------------------- /src/common/extract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/common/extract.h -------------------------------------------------------------------------------- /src/common/hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/common/hook.cpp -------------------------------------------------------------------------------- /src/common/hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/common/hook.h -------------------------------------------------------------------------------- /src/common/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/common/log.cpp -------------------------------------------------------------------------------- /src/common/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/common/log.h -------------------------------------------------------------------------------- /src/common/modloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/common/modloader.cpp -------------------------------------------------------------------------------- /src/common/modloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/common/modloader.h -------------------------------------------------------------------------------- /src/common/openssl_multithread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/common/openssl_multithread.cpp -------------------------------------------------------------------------------- /src/common/openssl_multithread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/common/openssl_multithread.h -------------------------------------------------------------------------------- /src/common/path_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/common/path_helper.cpp -------------------------------------------------------------------------------- /src/common/path_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/common/path_helper.h -------------------------------------------------------------------------------- /src/common/symbols/android_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/common/symbols/android_symbols.h -------------------------------------------------------------------------------- /src/common/symbols/egl_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/common/symbols/egl_symbols.h -------------------------------------------------------------------------------- /src/common/symbols/fmod_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/common/symbols/fmod_symbols.h -------------------------------------------------------------------------------- /src/common/symbols/libm_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/common/symbols/libm_symbols.h -------------------------------------------------------------------------------- /src/minecraft/Api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/Api.h -------------------------------------------------------------------------------- /src/minecraft/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/App.h -------------------------------------------------------------------------------- /src/minecraft/AppPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/AppPlatform.h -------------------------------------------------------------------------------- /src/minecraft/AppResourceLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/AppResourceLoader.h -------------------------------------------------------------------------------- /src/minecraft/AutomationClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/AutomationClient.h -------------------------------------------------------------------------------- /src/minecraft/CommandOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/CommandOutput.h -------------------------------------------------------------------------------- /src/minecraft/CommandOutputSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/CommandOutputSender.h -------------------------------------------------------------------------------- /src/minecraft/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/Common.h -------------------------------------------------------------------------------- /src/minecraft/DedicatedServerCommandOrigin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/DedicatedServerCommandOrigin.h -------------------------------------------------------------------------------- /src/minecraft/ExternalFileLevelStorageSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/ExternalFileLevelStorageSource.h -------------------------------------------------------------------------------- /src/minecraft/FilePathManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/FilePathManager.h -------------------------------------------------------------------------------- /src/minecraft/FilePickerSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/FilePickerSettings.h -------------------------------------------------------------------------------- /src/minecraft/GameControllerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/GameControllerManager.h -------------------------------------------------------------------------------- /src/minecraft/I18n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/I18n.h -------------------------------------------------------------------------------- /src/minecraft/IMinecraftApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/IMinecraftApp.h -------------------------------------------------------------------------------- /src/minecraft/ImagePickingCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/ImagePickingCallback.h -------------------------------------------------------------------------------- /src/minecraft/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/Keyboard.h -------------------------------------------------------------------------------- /src/minecraft/LevelSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/LevelSettings.h -------------------------------------------------------------------------------- /src/minecraft/Minecraft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/Minecraft.h -------------------------------------------------------------------------------- /src/minecraft/MinecraftCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/MinecraftCommands.h -------------------------------------------------------------------------------- /src/minecraft/MinecraftEventing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/MinecraftEventing.h -------------------------------------------------------------------------------- /src/minecraft/MinecraftGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/MinecraftGame.h -------------------------------------------------------------------------------- /src/minecraft/Mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/Mouse.h -------------------------------------------------------------------------------- /src/minecraft/MultiplayerService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/MultiplayerService.h -------------------------------------------------------------------------------- /src/minecraft/OpsList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/OpsList.h -------------------------------------------------------------------------------- /src/minecraft/Options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/Options.h -------------------------------------------------------------------------------- /src/minecraft/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/Resource.h -------------------------------------------------------------------------------- /src/minecraft/ResourcePack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/ResourcePack.h -------------------------------------------------------------------------------- /src/minecraft/ResourcePackStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/ResourcePackStack.h -------------------------------------------------------------------------------- /src/minecraft/SaveTransactionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/SaveTransactionManager.h -------------------------------------------------------------------------------- /src/minecraft/Scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/Scheduler.h -------------------------------------------------------------------------------- /src/minecraft/ServerInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/ServerInstance.h -------------------------------------------------------------------------------- /src/minecraft/UUID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/UUID.h -------------------------------------------------------------------------------- /src/minecraft/UserManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/UserManager.h -------------------------------------------------------------------------------- /src/minecraft/Whitelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/Whitelist.h -------------------------------------------------------------------------------- /src/minecraft/Xbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/Xbox.h -------------------------------------------------------------------------------- /src/minecraft/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/gl.h -------------------------------------------------------------------------------- /src/minecraft/std/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/std/function.h -------------------------------------------------------------------------------- /src/minecraft/std/function_darwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/std/function_darwin.h -------------------------------------------------------------------------------- /src/minecraft/std/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/std/string.h -------------------------------------------------------------------------------- /src/minecraft/std/string_darwin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/std/string_darwin.cpp -------------------------------------------------------------------------------- /src/minecraft/std/string_darwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/std/string_darwin.h -------------------------------------------------------------------------------- /src/minecraft/std/string_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/std/string_linux.cpp -------------------------------------------------------------------------------- /src/minecraft/std/string_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/std/string_linux.h -------------------------------------------------------------------------------- /src/minecraft/symbols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/minecraft/symbols.cpp -------------------------------------------------------------------------------- /src/minecraft/symbols.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void minecraft_symbols_init(void* handle); -------------------------------------------------------------------------------- /src/msa/msa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/msa/msa.cpp -------------------------------------------------------------------------------- /src/msa/msa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/msa/msa.h -------------------------------------------------------------------------------- /src/msa/msa_network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/msa/msa_network.cpp -------------------------------------------------------------------------------- /src/msa/msa_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/msa/msa_network.h -------------------------------------------------------------------------------- /src/msa/msa_token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/msa/msa_token.h -------------------------------------------------------------------------------- /src/server/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/server/server.cpp -------------------------------------------------------------------------------- /src/server/server_minecraft_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/server/server_minecraft_app.h -------------------------------------------------------------------------------- /src/server/server_properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/server/server_properties.cpp -------------------------------------------------------------------------------- /src/server/server_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/server/server_properties.h -------------------------------------------------------------------------------- /src/server/stub_key_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/server/stub_key_provider.h -------------------------------------------------------------------------------- /src/ui/browser/browser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/ui/browser/browser.cpp -------------------------------------------------------------------------------- /src/ui/browser/browser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/ui/browser/browser.h -------------------------------------------------------------------------------- /src/ui/browser/gamepad_mapper_browser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/ui/browser/gamepad_mapper_browser.cpp -------------------------------------------------------------------------------- /src/ui/browser/gamepad_mapper_browser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/ui/browser/gamepad_mapper_browser.h -------------------------------------------------------------------------------- /src/ui/browser/google_login_browser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/ui/browser/google_login_browser.cpp -------------------------------------------------------------------------------- /src/ui/browser/google_login_browser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/ui/browser/google_login_browser.h -------------------------------------------------------------------------------- /src/ui/browser/google_play_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/ui/browser/google_play_helper.cpp -------------------------------------------------------------------------------- /src/ui/browser/google_play_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/ui/browser/google_play_helper.h -------------------------------------------------------------------------------- /src/ui/browser/initial_setup_browser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/ui/browser/initial_setup_browser.cpp -------------------------------------------------------------------------------- /src/ui/browser/initial_setup_browser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/ui/browser/initial_setup_browser.h -------------------------------------------------------------------------------- /src/ui/browser/resources/circular_progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/ui/browser/resources/circular_progress.js -------------------------------------------------------------------------------- /src/ui/browser/resources/gamepad_mapper/GamepadXbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/ui/browser/resources/gamepad_mapper/GamepadXbox.svg -------------------------------------------------------------------------------- /src/ui/browser/resources/gamepad_mapper/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/ui/browser/resources/gamepad_mapper/index.html -------------------------------------------------------------------------------- /src/ui/browser/resources/initial_setup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/ui/browser/resources/initial_setup/index.html -------------------------------------------------------------------------------- /src/ui/browser/resources/initial_setup/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/ui/browser/resources/initial_setup/style.css -------------------------------------------------------------------------------- /src/ui/browser/xbox_login_browser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/ui/browser/xbox_login_browser.cpp -------------------------------------------------------------------------------- /src/ui/browser/xbox_login_browser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/ui/browser/xbox_login_browser.h -------------------------------------------------------------------------------- /src/ui/file_picker/file_picker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/ui/file_picker/file_picker.h -------------------------------------------------------------------------------- /src/ui/file_picker/file_picker_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/ui/file_picker/file_picker_factory.cpp -------------------------------------------------------------------------------- /src/ui/file_picker/file_picker_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/ui/file_picker/file_picker_factory.h -------------------------------------------------------------------------------- /src/ui/file_picker/file_picker_zenity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/ui/file_picker/file_picker_zenity.cpp -------------------------------------------------------------------------------- /src/ui/file_picker/file_picker_zenity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/ui/file_picker/file_picker_zenity.h -------------------------------------------------------------------------------- /src/ui/game_window/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/ui/game_window/window.h -------------------------------------------------------------------------------- /src/ui/game_window/window_eglut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/ui/game_window/window_eglut.cpp -------------------------------------------------------------------------------- /src/ui/game_window/window_eglut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/ui/game_window/window_eglut.h -------------------------------------------------------------------------------- /src/ui/game_window/window_glfw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/ui/game_window/window_glfw.cpp -------------------------------------------------------------------------------- /src/ui/game_window/window_glfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/src/ui/game_window/window_glfw.h -------------------------------------------------------------------------------- /start_mcpelauncher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/start_mcpelauncher.sh -------------------------------------------------------------------------------- /tools/cppheaderparser/CppHeaderParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/tools/cppheaderparser/CppHeaderParser.py -------------------------------------------------------------------------------- /tools/cppheaderparser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/tools/cppheaderparser/__init__.py -------------------------------------------------------------------------------- /tools/process_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCMrARM/mcpelauncher-linux/HEAD/tools/process_headers.py --------------------------------------------------------------------------------