├── .gitignore ├── .gitmodules ├── LICENSE ├── README.ja-JP.md ├── README.ko-KR.md ├── README.md ├── README.zh-Hans.md ├── deps ├── cpp-httplib.lua ├── discord_game_sdk │ ├── discord_game_sdk.dll │ └── discord_game_sdk.dll.lib ├── minhook.lua ├── msgpack11.lua └── rapidjson.lua ├── generate.bat ├── loader ├── generate.bat ├── premake5.lua └── src │ ├── MINT.h │ ├── VERSIONINFO.rc │ ├── dllproxy │ ├── imm32.asm │ ├── proxy.cpp │ ├── proxy.def │ └── winmm.asm │ ├── hook.cpp │ ├── main.cpp │ ├── resource.h │ └── stdinclude.hpp ├── premake5.lua ├── resources ├── config.json ├── custom_font │ ├── DoHyeon-Regular │ │ ├── font │ │ └── font.manifest │ ├── GyeonggiTitle_Medium │ │ ├── font │ │ └── font.manifest │ ├── Jua-Regular │ │ ├── font │ │ └── font.manifest │ └── SingleDay-Regular │ │ ├── font │ │ └── font.manifest ├── data_mapper.js ├── faq_index.json ├── glossary_index.json └── sprite.png ├── src ├── SaveIcon.cpp ├── SaveIcon.h ├── Signature.h ├── VERSIONINFO.rc ├── config │ ├── config.cpp │ └── config.hpp ├── discord │ ├── achievement_manager.cpp │ ├── achievement_manager.h │ ├── activity_manager.cpp │ ├── activity_manager.h │ ├── application_manager.cpp │ ├── application_manager.h │ ├── core.cpp │ ├── core.h │ ├── discord.h │ ├── event.h │ ├── ffi.h │ ├── image_manager.cpp │ ├── image_manager.h │ ├── lobby_manager.cpp │ ├── lobby_manager.h │ ├── network_manager.cpp │ ├── network_manager.h │ ├── overlay_manager.cpp │ ├── overlay_manager.h │ ├── relationship_manager.cpp │ ├── relationship_manager.h │ ├── storage_manager.cpp │ ├── storage_manager.h │ ├── store_manager.cpp │ ├── store_manager.h │ ├── types.cpp │ ├── types.h │ ├── user_manager.cpp │ ├── user_manager.h │ ├── voice_manager.cpp │ └── voice_manager.h ├── dllproxy │ ├── proxy.cpp │ ├── proxy.hpp │ ├── version.asm │ └── version.def ├── experiments.h ├── fpp │ ├── fpp.cpp │ └── fpp.h ├── game.hpp ├── hmac_sha256 │ ├── hmac_sha256.c │ ├── hmac_sha256.h │ ├── sha256.c │ └── sha256.h ├── hook.cpp ├── hook.h ├── il2cpp │ ├── codegen │ │ └── il2cpp-codegen-metadata.h │ ├── il2cpp-api-functions.h │ ├── il2cpp-api-functions.hpp │ ├── il2cpp-api-functions_2020.h │ ├── il2cpp-api-functions_unified.h │ ├── il2cpp-api-types.h │ ├── il2cpp-blob.h │ ├── il2cpp-class-internals.h │ ├── il2cpp-config-api.h │ ├── il2cpp-config.h │ ├── il2cpp-metadata.h │ ├── il2cpp-object-internals.h │ ├── il2cpp-pinvoke-support.h │ ├── il2cpp-runtime-metadata.h │ ├── il2cpp-sanitizers.h │ ├── il2cpp-string-types.h │ ├── il2cpp-tabledefs.h │ ├── il2cpp-tokentype.h │ ├── il2cpp-windowsruntime-types.h │ ├── il2cpp_symbols.cpp │ ├── il2cpp_symbols.hpp │ ├── os │ │ └── c-api │ │ │ ├── il2cpp-config-api-platforms.h │ │ │ └── il2cpp-config-platforms.h │ └── utils │ │ └── StringView.h ├── il2cpp_dump.cpp ├── il2cpp_dump.h ├── jwt │ ├── base64.hpp │ ├── jwt.cpp │ └── jwt.hpp ├── libcef.h ├── libnative_sqlite3.hpp ├── local │ ├── local.cpp │ └── local.hpp ├── logger │ ├── logger.cpp │ └── logger.hpp ├── main.cpp ├── masterdb │ └── masterdb.hpp ├── msgpack │ ├── msgpack_data.hpp │ └── msgpack_modify.hpp ├── notification │ ├── DesktopNotificationManagerCompat.cpp │ └── DesktopNotificationManagerCompat.h ├── notifier │ ├── notifier.cpp │ └── notifier.hpp ├── ntdll.h ├── openxr │ ├── openxr.cpp │ └── openxr.hpp ├── pe_lib │ ├── pe_base.cpp │ ├── pe_base.h │ ├── pe_exception.cpp │ ├── pe_exception.h │ ├── pe_properties.cpp │ ├── pe_properties.h │ ├── pe_properties_generic.cpp │ ├── pe_properties_generic.h │ ├── pe_section.cpp │ ├── pe_section.h │ ├── pe_structures.h │ ├── stdint_defs.h │ ├── utils.cpp │ └── utils.h ├── resource.h ├── rich_presence.hpp ├── scripts │ ├── CriMw.CriWare.Runtime │ │ ├── CriMw.CriWare.Runtime.hpp │ │ └── CriWare │ │ │ ├── CriAtomEx.hpp │ │ │ ├── CriAtomExPlayback.hpp │ │ │ └── CriMana │ │ │ ├── AudioInfo.hpp │ │ │ ├── CodecType.hpp │ │ │ └── MovieInfo.hpp │ ├── Cute.Core.Assembly │ │ ├── Cute.Core.Assembly.hpp │ │ └── Cute │ │ │ └── Core │ │ │ ├── UpdateDispatcher.cpp │ │ │ ├── UpdateDispatcher.hpp │ │ │ ├── WebViewManager.cpp │ │ │ └── WebViewManager.hpp │ ├── Cute.Cri.Assembly │ │ ├── Cute.Cri.Assembly.hpp │ │ └── Cute │ │ │ └── Cri │ │ │ ├── AudioPlayback.hpp │ │ │ ├── MovieManager.cpp │ │ │ ├── MovieManager.hpp │ │ │ ├── MoviePlayerBase.cpp │ │ │ ├── MoviePlayerBase.hpp │ │ │ ├── MoviePlayerHandle.hpp │ │ │ └── SoundGroup.hpp │ ├── Cute.Http.Assembly │ │ ├── Cute.Http.Assembly.hpp │ │ └── Cute │ │ │ └── Http │ │ │ ├── HttpManager.cpp │ │ │ └── HttpManager.hpp │ ├── DOTween │ │ ├── DG │ │ │ └── Tweening │ │ │ │ ├── Core │ │ │ │ ├── TweenManager.cpp │ │ │ │ └── TweenManager.hpp │ │ │ │ ├── DOTweenModuleUI.cpp │ │ │ │ ├── DOTweenModuleUI.hpp │ │ │ │ ├── TweenCallback.cpp │ │ │ │ ├── TweenCallback.hpp │ │ │ │ ├── TweenExtensions.cpp │ │ │ │ └── TweenExtensions.hpp │ │ └── DOTween.hpp │ ├── LibNative.Runtime │ │ ├── LibNative.Runtime.cpp │ │ └── LibNative.Runtime.hpp │ ├── Plugins │ │ ├── AnimateToUnity │ │ │ ├── AnRootManager.cpp │ │ │ ├── AnRootManager.hpp │ │ │ ├── AnText.cpp │ │ │ └── AnText.hpp │ │ ├── CodeStage │ │ │ └── AntiCheat │ │ │ │ └── ObscuredTypes │ │ │ │ ├── ObscuredBool.hpp │ │ │ │ ├── ObscuredInt.hpp │ │ │ │ └── ObscuredLong.hpp │ │ └── Plugins.hpp │ ├── ScriptInternal.hpp │ ├── Unity.TextMeshPro │ │ ├── TMPro │ │ │ ├── TMP_FontAsset.cpp │ │ │ ├── TMP_FontAsset.hpp │ │ │ ├── TMP_Settings.cpp │ │ │ └── TMP_Settings.hpp │ │ └── Unity.TextMeshPro.hpp │ ├── UnityEngine.AssetBundleModule │ │ ├── UnityEngine.AssetBundleModule.hpp │ │ └── UnityEngine │ │ │ ├── AssetBundle.cpp │ │ │ ├── AssetBundle.hpp │ │ │ ├── AssetBundleRequest.cpp │ │ │ └── AssetBundleRequest.hpp │ ├── UnityEngine.CoreModule │ │ ├── UnityEngine.CoreModule.hpp │ │ └── UnityEngine │ │ │ ├── Application.cpp │ │ │ ├── Application.hpp │ │ │ ├── BeforeRenderHelper.hpp │ │ │ ├── Behaviour.cpp │ │ │ ├── Behaviour.hpp │ │ │ ├── Camera.cpp │ │ │ ├── Camera.hpp │ │ │ ├── Color.hpp │ │ │ ├── Color32.hpp │ │ │ ├── Component.cpp │ │ │ ├── Component.hpp │ │ │ ├── Coroutine.cpp │ │ │ ├── Coroutine.hpp │ │ │ ├── CubemapFace.hpp │ │ │ ├── Debug.cpp │ │ │ ├── Debug.hpp │ │ │ ├── Display.cpp │ │ │ ├── Display.hpp │ │ │ ├── GameObject.cpp │ │ │ ├── GameObject.hpp │ │ │ ├── Light.cpp │ │ │ ├── Light.hpp │ │ │ ├── Material.cpp │ │ │ ├── Material.hpp │ │ │ ├── Matrix4x4.cpp │ │ │ ├── Matrix4x4.hpp │ │ │ ├── MonoBehaviour.cpp │ │ │ ├── MonoBehaviour.hpp │ │ │ ├── NetworkReachability.hpp │ │ │ ├── Object.cpp │ │ │ ├── Object.hpp │ │ │ ├── PlayerPrefs.cpp │ │ │ ├── PlayerPrefs.hpp │ │ │ ├── Pose.hpp │ │ │ ├── QualitySettings.cpp │ │ │ ├── QualitySettings.hpp │ │ │ ├── Quaternion.cpp │ │ │ ├── Quaternion.hpp │ │ │ ├── Rect.hpp │ │ │ ├── RectTransform.cpp │ │ │ ├── RectTransform.hpp │ │ │ ├── RenderTexture.cpp │ │ │ ├── RenderTexture.hpp │ │ │ ├── Renderer.cpp │ │ │ ├── Renderer.hpp │ │ │ ├── Rendering │ │ │ ├── BuiltinRenderTextureType.hpp │ │ │ ├── RenderTargetIdentifier.cpp │ │ │ └── RenderTargetIdentifier.hpp │ │ │ ├── Resolution.hpp │ │ │ ├── ResourcesAPIInternal.cpp │ │ │ ├── ResourcesAPIInternal.hpp │ │ │ ├── SceneManagement │ │ │ ├── Scene.cpp │ │ │ ├── Scene.hpp │ │ │ ├── SceneManager.cpp │ │ │ └── SceneManager.hpp │ │ │ ├── Screen.cpp │ │ │ ├── Screen.hpp │ │ │ ├── ScreenOrientation.hpp │ │ │ ├── ScriptableObject.cpp │ │ │ ├── ScriptableObject.hpp │ │ │ ├── Shader.cpp │ │ │ ├── Shader.hpp │ │ │ ├── Sprite.cpp │ │ │ ├── Sprite.hpp │ │ │ ├── StackTraceUtility.cpp │ │ │ ├── StackTraceUtility.hpp │ │ │ ├── Transform.cpp │ │ │ ├── Transform.hpp │ │ │ ├── Vector2.hpp │ │ │ ├── Vector2Int.hpp │ │ │ ├── Vector3.cpp │ │ │ ├── Vector3.hpp │ │ │ ├── Vector4.hpp │ │ │ └── YieldInstruction.hpp │ ├── UnityEngine.InputLegacyModule │ │ ├── UnityEngine.InputLegacyModule.hpp │ │ └── UnityEngine │ │ │ ├── Input.cpp │ │ │ └── Input.hpp │ ├── UnityEngine.SubsystemsModule │ │ └── UnityEngine │ │ │ ├── SubsystemManager.cpp │ │ │ ├── SubsystemManager.hpp │ │ │ └── SubsystemsImplementation │ │ │ ├── SubsystemDescriptorStore.cpp │ │ │ └── SubsystemDescriptorStore.hpp │ ├── UnityEngine.TextRenderingModule │ │ ├── UnityEngine.TextRenderingModule.hpp │ │ └── UnityEngine │ │ │ ├── TextGenerationSettings.hpp │ │ │ ├── TextGenerator.cpp │ │ │ └── TextGenerator.hpp │ ├── UnityEngine.UI │ │ ├── UnityEngine.UI.hpp │ │ └── UnityEngine │ │ │ └── UI │ │ │ ├── CanvasScaler.cpp │ │ │ ├── CanvasScaler.hpp │ │ │ ├── Text.cpp │ │ │ └── Text.hpp │ ├── UnityEngine.UnityWebRequestModule │ │ ├── UnityEngine.UnityWebRequestModule.hpp │ │ └── UnityEngine │ │ │ └── Networking │ │ │ ├── DownloadHandler.cpp │ │ │ ├── DownloadHandler.hpp │ │ │ ├── UnityWebRequest.cpp │ │ │ ├── UnityWebRequest.hpp │ │ │ ├── UploadHandlerRaw.cpp │ │ │ └── UploadHandlerRaw.hpp │ ├── UnityEngine.XRModule │ │ ├── UnityEngine.XRModule.hpp │ │ └── UnityEngine │ │ │ └── XR │ │ │ ├── AvailableTrackingData.hpp │ │ │ ├── InputTracking.cpp │ │ │ ├── InputTracking.hpp │ │ │ ├── XRNode.hpp │ │ │ └── XRNodeState.hpp │ ├── _Cyan │ │ ├── Cyan │ │ │ └── LocalFile │ │ │ │ ├── PathResolver.cpp │ │ │ │ └── PathResolver.hpp │ │ └── _Cyan.hpp │ ├── mscorlib │ │ ├── System │ │ │ ├── Boolean.hpp │ │ │ ├── Byte.hpp │ │ │ ├── Collections │ │ │ │ └── Generic │ │ │ │ │ ├── Dictionary.hpp │ │ │ │ │ └── List.hpp │ │ │ ├── Enum.cpp │ │ │ ├── Enum.hpp │ │ │ ├── Int32.hpp │ │ │ ├── Nullable.hpp │ │ │ └── ValueTuple.hpp │ │ └── mscorlib.hpp │ ├── umamusume │ │ ├── Gallop │ │ │ ├── AudioManager.cpp │ │ │ ├── AudioManager.hpp │ │ │ ├── BGManager.cpp │ │ │ ├── BGManager.hpp │ │ │ ├── BootSystem.cpp │ │ │ ├── BootSystem.hpp │ │ │ ├── Certification.cpp │ │ │ ├── Certification.hpp │ │ │ ├── CharaPropRendererAccessor.cpp │ │ │ ├── CharaPropRendererAccessor.hpp │ │ │ ├── Connecting.cpp │ │ │ ├── Connecting.hpp │ │ │ ├── CourseBaseObject.hpp │ │ │ ├── Cryptographer.cpp │ │ │ ├── Cryptographer.hpp │ │ │ ├── CutInImageEffectPostRender.cpp │ │ │ ├── CutInImageEffectPostRender.hpp │ │ │ ├── CySpringController.cpp │ │ │ ├── CySpringController.hpp │ │ │ ├── DialogCircleItemDonate.cpp │ │ │ ├── DialogCircleItemDonate.hpp │ │ │ ├── DialogCommon.cpp │ │ │ ├── DialogCommon.hpp │ │ │ ├── DialogCommonBase.cpp │ │ │ ├── DialogCommonBase.hpp │ │ │ ├── DialogCommonBaseData.cpp │ │ │ ├── DialogCommonBaseData.hpp │ │ │ ├── DialogManager.cpp │ │ │ ├── DialogManager.hpp │ │ │ ├── DownloadErrorProcessor.cpp │ │ │ ├── DownloadErrorProcessor.hpp │ │ │ ├── DownloadManager.cpp │ │ │ ├── DownloadManager.hpp │ │ │ ├── DownloadView.cpp │ │ │ ├── DownloadView.hpp │ │ │ ├── FrameRateController.cpp │ │ │ ├── FrameRateController.hpp │ │ │ ├── GallopFrameBuffer.cpp │ │ │ ├── GallopFrameBuffer.hpp │ │ │ ├── GallopInput.cpp │ │ │ ├── GallopInput.hpp │ │ │ ├── GallopUtil.cpp │ │ │ ├── GallopUtil.hpp │ │ │ ├── GameSystem.cpp │ │ │ ├── GameSystem.hpp │ │ │ ├── GraphicSettings.cpp │ │ │ ├── GraphicSettings.hpp │ │ │ ├── HttpHelper.cpp │ │ │ ├── HttpHelper.hpp │ │ │ ├── ImageCommon.cpp │ │ │ ├── ImageCommon.hpp │ │ │ ├── LandscapeUIManager.cpp │ │ │ ├── LandscapeUIManager.hpp │ │ │ ├── LimitBreakCut.cpp │ │ │ ├── LimitBreakCut.hpp │ │ │ ├── Live │ │ │ │ ├── Director.cpp │ │ │ │ └── Director.hpp │ │ │ ├── LiveTheaterCharaSelect.cpp │ │ │ ├── LiveTheaterCharaSelect.hpp │ │ │ ├── LiveViewController.hpp │ │ │ ├── LocalPushDefine.hpp │ │ │ ├── Localize.cpp │ │ │ ├── Localize.hpp │ │ │ ├── LocalizeExtention.cpp │ │ │ ├── LocalizeExtention.hpp │ │ │ ├── LockableBehaviour.hpp │ │ │ ├── LowResolutionCameraBase.cpp │ │ │ ├── LowResolutionCameraBase.hpp │ │ │ ├── LowResolutionCameraUtil.hpp │ │ │ ├── MasterCharacterSystemText.cpp │ │ │ ├── MasterCharacterSystemText.hpp │ │ │ ├── MiniDirector.cpp │ │ │ ├── MiniDirector.hpp │ │ │ ├── Model │ │ │ │ └── Component │ │ │ │ │ ├── CySpringUpdater.cpp │ │ │ │ │ └── CySpringUpdater.hpp │ │ │ ├── ModelLoader.cpp │ │ │ ├── ModelLoader.hpp │ │ │ ├── MonoBehaviourExtension.cpp │ │ │ ├── MonoBehaviourExtension.hpp │ │ │ ├── MonoFunctionSealedBaseForMonoSingleton.hpp │ │ │ ├── MonoSingleton.cpp │ │ │ ├── MonoSingleton.hpp │ │ │ ├── NowLoading.cpp │ │ │ ├── NowLoading.hpp │ │ │ ├── PartsBuyJewelListItem.cpp │ │ │ ├── PartsBuyJewelListItem.hpp │ │ │ ├── PartsEpisodeList.cpp │ │ │ ├── PartsEpisodeList.hpp │ │ │ ├── PaymentUtility.cpp │ │ │ ├── PaymentUtility.hpp │ │ │ ├── PushNotificationManager.cpp │ │ │ ├── PushNotificationManager.hpp │ │ │ ├── RaceCameraManager.cpp │ │ │ ├── RaceCameraManager.hpp │ │ │ ├── RaceImageEffect.cpp │ │ │ ├── RaceImageEffect.hpp │ │ │ ├── RaceLoaderManager.hpp │ │ │ ├── RaceManager.cpp │ │ │ ├── RaceManager.hpp │ │ │ ├── RaceUtil.cpp │ │ │ ├── RaceUtil.hpp │ │ │ ├── SceneDefine.hpp │ │ │ ├── SceneManager.cpp │ │ │ ├── SceneManager.hpp │ │ │ ├── Screen.cpp │ │ │ ├── Screen.hpp │ │ │ ├── Singleton.cpp │ │ │ ├── Singleton.hpp │ │ │ ├── StandaloneWindowResize.cpp │ │ │ ├── StandaloneWindowResize.hpp │ │ │ ├── StoryImageEffect.cpp │ │ │ ├── StoryImageEffect.hpp │ │ │ ├── StoryRaceTextAsset.cpp │ │ │ ├── StoryRaceTextAsset.hpp │ │ │ ├── StoryTimelineBlockData.cpp │ │ │ ├── StoryTimelineBlockData.hpp │ │ │ ├── StoryTimelineController.cpp │ │ │ ├── StoryTimelineController.hpp │ │ │ ├── StoryViewController.cpp │ │ │ ├── StoryViewController.hpp │ │ │ ├── TapEffectController.cpp │ │ │ ├── TapEffectController.hpp │ │ │ ├── TextCommon.cpp │ │ │ ├── TextCommon.hpp │ │ │ ├── TextId.hpp │ │ │ ├── TextMeshProUguiCommon.cpp │ │ │ ├── TextMeshProUguiCommon.hpp │ │ │ ├── TextUtil.cpp │ │ │ ├── TextUtil.hpp │ │ │ ├── TitleViewController.cpp │ │ │ ├── TitleViewController.hpp │ │ │ ├── UIManager.cpp │ │ │ ├── UIManager.hpp │ │ │ ├── UserChara.cpp │ │ │ ├── UserChara.hpp │ │ │ ├── WebViewDefine.hpp │ │ │ ├── WebViewManager.cpp │ │ │ ├── WebViewManager.hpp │ │ │ ├── WorkDataManager.cpp │ │ │ └── WorkDataManager.hpp │ │ ├── UncheaterInit.cpp │ │ ├── UncheaterInit.hpp │ │ └── umamusume.hpp │ └── uncheatercsd │ │ ├── Uncheater │ │ ├── SystemBins64.cpp │ │ └── SystemBins64.hpp │ │ └── uncheatercsd.hpp ├── settings_text.hpp ├── smtc │ └── SystemMediaTransportControlsManager.hpp ├── stdinclude.hpp ├── steam │ └── steam.cpp ├── string_utils.hpp ├── taskbar │ └── TaskbarManager.hpp └── unity │ └── IUnityInterface.h └── utils └── bin └── premake5.exe /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.ja-JP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/README.ja-JP.md -------------------------------------------------------------------------------- /README.ko-KR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/README.ko-KR.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-Hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/README.zh-Hans.md -------------------------------------------------------------------------------- /deps/cpp-httplib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/deps/cpp-httplib.lua -------------------------------------------------------------------------------- /deps/discord_game_sdk/discord_game_sdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/deps/discord_game_sdk/discord_game_sdk.dll -------------------------------------------------------------------------------- /deps/discord_game_sdk/discord_game_sdk.dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/deps/discord_game_sdk/discord_game_sdk.dll.lib -------------------------------------------------------------------------------- /deps/minhook.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/deps/minhook.lua -------------------------------------------------------------------------------- /deps/msgpack11.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/deps/msgpack11.lua -------------------------------------------------------------------------------- /deps/rapidjson.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/deps/rapidjson.lua -------------------------------------------------------------------------------- /generate.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | utils\bin\premake5 %* vs2026 -------------------------------------------------------------------------------- /loader/generate.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | ..\utils\bin\premake5 %* vs2026 -------------------------------------------------------------------------------- /loader/premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/loader/premake5.lua -------------------------------------------------------------------------------- /loader/src/MINT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/loader/src/MINT.h -------------------------------------------------------------------------------- /loader/src/VERSIONINFO.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/loader/src/VERSIONINFO.rc -------------------------------------------------------------------------------- /loader/src/dllproxy/imm32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/loader/src/dllproxy/imm32.asm -------------------------------------------------------------------------------- /loader/src/dllproxy/proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/loader/src/dllproxy/proxy.cpp -------------------------------------------------------------------------------- /loader/src/dllproxy/proxy.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/loader/src/dllproxy/proxy.def -------------------------------------------------------------------------------- /loader/src/dllproxy/winmm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/loader/src/dllproxy/winmm.asm -------------------------------------------------------------------------------- /loader/src/hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/loader/src/hook.cpp -------------------------------------------------------------------------------- /loader/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/loader/src/main.cpp -------------------------------------------------------------------------------- /loader/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/loader/src/resource.h -------------------------------------------------------------------------------- /loader/src/stdinclude.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/loader/src/stdinclude.hpp -------------------------------------------------------------------------------- /premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/premake5.lua -------------------------------------------------------------------------------- /resources/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/resources/config.json -------------------------------------------------------------------------------- /resources/custom_font/DoHyeon-Regular/font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/resources/custom_font/DoHyeon-Regular/font -------------------------------------------------------------------------------- /resources/custom_font/DoHyeon-Regular/font.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/resources/custom_font/DoHyeon-Regular/font.manifest -------------------------------------------------------------------------------- /resources/custom_font/GyeonggiTitle_Medium/font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/resources/custom_font/GyeonggiTitle_Medium/font -------------------------------------------------------------------------------- /resources/custom_font/GyeonggiTitle_Medium/font.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/resources/custom_font/GyeonggiTitle_Medium/font.manifest -------------------------------------------------------------------------------- /resources/custom_font/Jua-Regular/font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/resources/custom_font/Jua-Regular/font -------------------------------------------------------------------------------- /resources/custom_font/Jua-Regular/font.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/resources/custom_font/Jua-Regular/font.manifest -------------------------------------------------------------------------------- /resources/custom_font/SingleDay-Regular/font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/resources/custom_font/SingleDay-Regular/font -------------------------------------------------------------------------------- /resources/custom_font/SingleDay-Regular/font.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/resources/custom_font/SingleDay-Regular/font.manifest -------------------------------------------------------------------------------- /resources/data_mapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/resources/data_mapper.js -------------------------------------------------------------------------------- /resources/faq_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/resources/faq_index.json -------------------------------------------------------------------------------- /resources/glossary_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/resources/glossary_index.json -------------------------------------------------------------------------------- /resources/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/resources/sprite.png -------------------------------------------------------------------------------- /src/SaveIcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/SaveIcon.cpp -------------------------------------------------------------------------------- /src/SaveIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/SaveIcon.h -------------------------------------------------------------------------------- /src/Signature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/Signature.h -------------------------------------------------------------------------------- /src/VERSIONINFO.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/VERSIONINFO.rc -------------------------------------------------------------------------------- /src/config/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/config/config.cpp -------------------------------------------------------------------------------- /src/config/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/config/config.hpp -------------------------------------------------------------------------------- /src/discord/achievement_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/discord/achievement_manager.cpp -------------------------------------------------------------------------------- /src/discord/achievement_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/discord/achievement_manager.h -------------------------------------------------------------------------------- /src/discord/activity_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/discord/activity_manager.cpp -------------------------------------------------------------------------------- /src/discord/activity_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/discord/activity_manager.h -------------------------------------------------------------------------------- /src/discord/application_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/discord/application_manager.cpp -------------------------------------------------------------------------------- /src/discord/application_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/discord/application_manager.h -------------------------------------------------------------------------------- /src/discord/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/discord/core.cpp -------------------------------------------------------------------------------- /src/discord/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/discord/core.h -------------------------------------------------------------------------------- /src/discord/discord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/discord/discord.h -------------------------------------------------------------------------------- /src/discord/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/discord/event.h -------------------------------------------------------------------------------- /src/discord/ffi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/discord/ffi.h -------------------------------------------------------------------------------- /src/discord/image_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/discord/image_manager.cpp -------------------------------------------------------------------------------- /src/discord/image_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/discord/image_manager.h -------------------------------------------------------------------------------- /src/discord/lobby_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/discord/lobby_manager.cpp -------------------------------------------------------------------------------- /src/discord/lobby_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/discord/lobby_manager.h -------------------------------------------------------------------------------- /src/discord/network_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/discord/network_manager.cpp -------------------------------------------------------------------------------- /src/discord/network_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/discord/network_manager.h -------------------------------------------------------------------------------- /src/discord/overlay_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/discord/overlay_manager.cpp -------------------------------------------------------------------------------- /src/discord/overlay_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/discord/overlay_manager.h -------------------------------------------------------------------------------- /src/discord/relationship_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/discord/relationship_manager.cpp -------------------------------------------------------------------------------- /src/discord/relationship_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/discord/relationship_manager.h -------------------------------------------------------------------------------- /src/discord/storage_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/discord/storage_manager.cpp -------------------------------------------------------------------------------- /src/discord/storage_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/discord/storage_manager.h -------------------------------------------------------------------------------- /src/discord/store_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/discord/store_manager.cpp -------------------------------------------------------------------------------- /src/discord/store_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/discord/store_manager.h -------------------------------------------------------------------------------- /src/discord/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/discord/types.cpp -------------------------------------------------------------------------------- /src/discord/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/discord/types.h -------------------------------------------------------------------------------- /src/discord/user_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/discord/user_manager.cpp -------------------------------------------------------------------------------- /src/discord/user_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/discord/user_manager.h -------------------------------------------------------------------------------- /src/discord/voice_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/discord/voice_manager.cpp -------------------------------------------------------------------------------- /src/discord/voice_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/discord/voice_manager.h -------------------------------------------------------------------------------- /src/dllproxy/proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/dllproxy/proxy.cpp -------------------------------------------------------------------------------- /src/dllproxy/proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/dllproxy/proxy.hpp -------------------------------------------------------------------------------- /src/dllproxy/version.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/dllproxy/version.asm -------------------------------------------------------------------------------- /src/dllproxy/version.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/dllproxy/version.def -------------------------------------------------------------------------------- /src/experiments.h: -------------------------------------------------------------------------------- 1 | #define _EXPERIMENTS 2 | -------------------------------------------------------------------------------- /src/fpp/fpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/fpp/fpp.cpp -------------------------------------------------------------------------------- /src/fpp/fpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/fpp/fpp.h -------------------------------------------------------------------------------- /src/game.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/game.hpp -------------------------------------------------------------------------------- /src/hmac_sha256/hmac_sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/hmac_sha256/hmac_sha256.c -------------------------------------------------------------------------------- /src/hmac_sha256/hmac_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/hmac_sha256/hmac_sha256.h -------------------------------------------------------------------------------- /src/hmac_sha256/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/hmac_sha256/sha256.c -------------------------------------------------------------------------------- /src/hmac_sha256/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/hmac_sha256/sha256.h -------------------------------------------------------------------------------- /src/hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/hook.cpp -------------------------------------------------------------------------------- /src/hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/hook.h -------------------------------------------------------------------------------- /src/il2cpp/codegen/il2cpp-codegen-metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/il2cpp/codegen/il2cpp-codegen-metadata.h -------------------------------------------------------------------------------- /src/il2cpp/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/il2cpp/il2cpp-api-functions.h -------------------------------------------------------------------------------- /src/il2cpp/il2cpp-api-functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/il2cpp/il2cpp-api-functions.hpp -------------------------------------------------------------------------------- /src/il2cpp/il2cpp-api-functions_2020.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/il2cpp/il2cpp-api-functions_2020.h -------------------------------------------------------------------------------- /src/il2cpp/il2cpp-api-functions_unified.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/il2cpp/il2cpp-api-functions_unified.h -------------------------------------------------------------------------------- /src/il2cpp/il2cpp-api-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/il2cpp/il2cpp-api-types.h -------------------------------------------------------------------------------- /src/il2cpp/il2cpp-blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/il2cpp/il2cpp-blob.h -------------------------------------------------------------------------------- /src/il2cpp/il2cpp-class-internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/il2cpp/il2cpp-class-internals.h -------------------------------------------------------------------------------- /src/il2cpp/il2cpp-config-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/il2cpp/il2cpp-config-api.h -------------------------------------------------------------------------------- /src/il2cpp/il2cpp-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/il2cpp/il2cpp-config.h -------------------------------------------------------------------------------- /src/il2cpp/il2cpp-metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/il2cpp/il2cpp-metadata.h -------------------------------------------------------------------------------- /src/il2cpp/il2cpp-object-internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/il2cpp/il2cpp-object-internals.h -------------------------------------------------------------------------------- /src/il2cpp/il2cpp-pinvoke-support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/il2cpp/il2cpp-pinvoke-support.h -------------------------------------------------------------------------------- /src/il2cpp/il2cpp-runtime-metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/il2cpp/il2cpp-runtime-metadata.h -------------------------------------------------------------------------------- /src/il2cpp/il2cpp-sanitizers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/il2cpp/il2cpp-sanitizers.h -------------------------------------------------------------------------------- /src/il2cpp/il2cpp-string-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/il2cpp/il2cpp-string-types.h -------------------------------------------------------------------------------- /src/il2cpp/il2cpp-tabledefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/il2cpp/il2cpp-tabledefs.h -------------------------------------------------------------------------------- /src/il2cpp/il2cpp-tokentype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/il2cpp/il2cpp-tokentype.h -------------------------------------------------------------------------------- /src/il2cpp/il2cpp-windowsruntime-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/il2cpp/il2cpp-windowsruntime-types.h -------------------------------------------------------------------------------- /src/il2cpp/il2cpp_symbols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/il2cpp/il2cpp_symbols.cpp -------------------------------------------------------------------------------- /src/il2cpp/il2cpp_symbols.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/il2cpp/il2cpp_symbols.hpp -------------------------------------------------------------------------------- /src/il2cpp/os/c-api/il2cpp-config-api-platforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/il2cpp/os/c-api/il2cpp-config-api-platforms.h -------------------------------------------------------------------------------- /src/il2cpp/os/c-api/il2cpp-config-platforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/il2cpp/os/c-api/il2cpp-config-platforms.h -------------------------------------------------------------------------------- /src/il2cpp/utils/StringView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/il2cpp/utils/StringView.h -------------------------------------------------------------------------------- /src/il2cpp_dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/il2cpp_dump.cpp -------------------------------------------------------------------------------- /src/il2cpp_dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/il2cpp_dump.h -------------------------------------------------------------------------------- /src/jwt/base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/jwt/base64.hpp -------------------------------------------------------------------------------- /src/jwt/jwt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/jwt/jwt.cpp -------------------------------------------------------------------------------- /src/jwt/jwt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/jwt/jwt.hpp -------------------------------------------------------------------------------- /src/libcef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/libcef.h -------------------------------------------------------------------------------- /src/libnative_sqlite3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/libnative_sqlite3.hpp -------------------------------------------------------------------------------- /src/local/local.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/local/local.cpp -------------------------------------------------------------------------------- /src/local/local.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/local/local.hpp -------------------------------------------------------------------------------- /src/logger/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/logger/logger.cpp -------------------------------------------------------------------------------- /src/logger/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/logger/logger.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/masterdb/masterdb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/masterdb/masterdb.hpp -------------------------------------------------------------------------------- /src/msgpack/msgpack_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/msgpack/msgpack_data.hpp -------------------------------------------------------------------------------- /src/msgpack/msgpack_modify.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/msgpack/msgpack_modify.hpp -------------------------------------------------------------------------------- /src/notification/DesktopNotificationManagerCompat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/notification/DesktopNotificationManagerCompat.cpp -------------------------------------------------------------------------------- /src/notification/DesktopNotificationManagerCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/notification/DesktopNotificationManagerCompat.h -------------------------------------------------------------------------------- /src/notifier/notifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/notifier/notifier.cpp -------------------------------------------------------------------------------- /src/notifier/notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/notifier/notifier.hpp -------------------------------------------------------------------------------- /src/ntdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/ntdll.h -------------------------------------------------------------------------------- /src/openxr/openxr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/openxr/openxr.cpp -------------------------------------------------------------------------------- /src/openxr/openxr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/openxr/openxr.hpp -------------------------------------------------------------------------------- /src/pe_lib/pe_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/pe_lib/pe_base.cpp -------------------------------------------------------------------------------- /src/pe_lib/pe_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/pe_lib/pe_base.h -------------------------------------------------------------------------------- /src/pe_lib/pe_exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/pe_lib/pe_exception.cpp -------------------------------------------------------------------------------- /src/pe_lib/pe_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/pe_lib/pe_exception.h -------------------------------------------------------------------------------- /src/pe_lib/pe_properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/pe_lib/pe_properties.cpp -------------------------------------------------------------------------------- /src/pe_lib/pe_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/pe_lib/pe_properties.h -------------------------------------------------------------------------------- /src/pe_lib/pe_properties_generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/pe_lib/pe_properties_generic.cpp -------------------------------------------------------------------------------- /src/pe_lib/pe_properties_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/pe_lib/pe_properties_generic.h -------------------------------------------------------------------------------- /src/pe_lib/pe_section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/pe_lib/pe_section.cpp -------------------------------------------------------------------------------- /src/pe_lib/pe_section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/pe_lib/pe_section.h -------------------------------------------------------------------------------- /src/pe_lib/pe_structures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/pe_lib/pe_structures.h -------------------------------------------------------------------------------- /src/pe_lib/stdint_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/pe_lib/stdint_defs.h -------------------------------------------------------------------------------- /src/pe_lib/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/pe_lib/utils.cpp -------------------------------------------------------------------------------- /src/pe_lib/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/pe_lib/utils.h -------------------------------------------------------------------------------- /src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/resource.h -------------------------------------------------------------------------------- /src/rich_presence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/rich_presence.hpp -------------------------------------------------------------------------------- /src/scripts/CriMw.CriWare.Runtime/CriMw.CriWare.Runtime.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/CriMw.CriWare.Runtime/CriWare/CriAtomEx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/CriMw.CriWare.Runtime/CriWare/CriAtomEx.hpp -------------------------------------------------------------------------------- /src/scripts/CriMw.CriWare.Runtime/CriWare/CriAtomExPlayback.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/CriMw.CriWare.Runtime/CriWare/CriAtomExPlayback.hpp -------------------------------------------------------------------------------- /src/scripts/CriMw.CriWare.Runtime/CriWare/CriMana/AudioInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/CriMw.CriWare.Runtime/CriWare/CriMana/AudioInfo.hpp -------------------------------------------------------------------------------- /src/scripts/CriMw.CriWare.Runtime/CriWare/CriMana/CodecType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/CriMw.CriWare.Runtime/CriWare/CriMana/CodecType.hpp -------------------------------------------------------------------------------- /src/scripts/CriMw.CriWare.Runtime/CriWare/CriMana/MovieInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/CriMw.CriWare.Runtime/CriWare/CriMana/MovieInfo.hpp -------------------------------------------------------------------------------- /src/scripts/Cute.Core.Assembly/Cute.Core.Assembly.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #define ASSEMBLY_NAME "Cute.Core.Assembly.dll" 3 | -------------------------------------------------------------------------------- /src/scripts/Cute.Core.Assembly/Cute/Core/UpdateDispatcher.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/Cute.Core.Assembly/Cute/Core/UpdateDispatcher.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/Cute.Core.Assembly/Cute/Core/WebViewManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/Cute.Core.Assembly/Cute/Core/WebViewManager.cpp -------------------------------------------------------------------------------- /src/scripts/Cute.Core.Assembly/Cute/Core/WebViewManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/Cute.Core.Assembly/Cute/Core/WebViewManager.hpp -------------------------------------------------------------------------------- /src/scripts/Cute.Cri.Assembly/Cute.Cri.Assembly.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/Cute.Cri.Assembly/Cute/Cri/AudioPlayback.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/Cute.Cri.Assembly/Cute/Cri/AudioPlayback.hpp -------------------------------------------------------------------------------- /src/scripts/Cute.Cri.Assembly/Cute/Cri/MovieManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/Cute.Cri.Assembly/Cute/Cri/MovieManager.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/Cute.Cri.Assembly/Cute/Cri/MoviePlayerBase.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/Cute.Cri.Assembly/Cute/Cri/MoviePlayerBase.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/Cute.Cri.Assembly/Cute/Cri/MoviePlayerHandle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/Cute.Cri.Assembly/Cute/Cri/MoviePlayerHandle.hpp -------------------------------------------------------------------------------- /src/scripts/Cute.Cri.Assembly/Cute/Cri/SoundGroup.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/Cute.Http.Assembly/Cute.Http.Assembly.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #define ASSEMBLY_NAME "Cute.Http.Assembly.dll" 3 | -------------------------------------------------------------------------------- /src/scripts/Cute.Http.Assembly/Cute/Http/HttpManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/Cute.Http.Assembly/Cute/Http/HttpManager.cpp -------------------------------------------------------------------------------- /src/scripts/Cute.Http.Assembly/Cute/Http/HttpManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/Cute.Http.Assembly/Cute/Http/HttpManager.hpp -------------------------------------------------------------------------------- /src/scripts/DOTween/DG/Tweening/Core/TweenManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/DOTween/DG/Tweening/Core/TweenManager.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/DOTween/DG/Tweening/DOTweenModuleUI.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/DOTween/DG/Tweening/DOTweenModuleUI.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/DOTween/DG/Tweening/TweenCallback.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/DOTween/DG/Tweening/TweenCallback.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/DOTween/DG/Tweening/TweenExtensions.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/DOTween/DG/Tweening/TweenExtensions.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/DOTween/DOTween.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/LibNative.Runtime/LibNative.Runtime.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/LibNative.Runtime/LibNative.Runtime.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/Plugins/AnimateToUnity/AnRootManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/Plugins/AnimateToUnity/AnRootManager.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/Plugins/AnimateToUnity/AnText.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/Plugins/AnimateToUnity/AnText.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/Plugins/CodeStage/AntiCheat/ObscuredTypes/ObscuredBool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/Plugins/CodeStage/AntiCheat/ObscuredTypes/ObscuredBool.hpp -------------------------------------------------------------------------------- /src/scripts/Plugins/CodeStage/AntiCheat/ObscuredTypes/ObscuredInt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/Plugins/CodeStage/AntiCheat/ObscuredTypes/ObscuredInt.hpp -------------------------------------------------------------------------------- /src/scripts/Plugins/CodeStage/AntiCheat/ObscuredTypes/ObscuredLong.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/Plugins/CodeStage/AntiCheat/ObscuredTypes/ObscuredLong.hpp -------------------------------------------------------------------------------- /src/scripts/Plugins/Plugins.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/ScriptInternal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/ScriptInternal.hpp -------------------------------------------------------------------------------- /src/scripts/Unity.TextMeshPro/TMPro/TMP_FontAsset.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/Unity.TextMeshPro/TMPro/TMP_FontAsset.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/Unity.TextMeshPro/TMPro/TMP_Settings.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/Unity.TextMeshPro/TMPro/TMP_Settings.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/Unity.TextMeshPro/Unity.TextMeshPro.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.AssetBundleModule/UnityEngine.AssetBundleModule.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.AssetBundleModule/UnityEngine/AssetBundle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.AssetBundleModule/UnityEngine/AssetBundle.cpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.AssetBundleModule/UnityEngine/AssetBundle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.AssetBundleModule/UnityEngine/AssetBundle.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.AssetBundleModule/UnityEngine/AssetBundleRequest.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.AssetBundleModule/UnityEngine/AssetBundleRequest.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine.CoreModule.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #define ASSEMBLY_NAME "UnityEngine.CoreModule.dll" 3 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Application.cpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Application.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Application.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/BeforeRenderHelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/BeforeRenderHelper.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Behaviour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Behaviour.cpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Behaviour.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Behaviour.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Camera.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Camera.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Color.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Color32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Color32.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Component.cpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Component.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Component.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Coroutine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Coroutine.cpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Coroutine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Coroutine.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/CubemapFace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/CubemapFace.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Debug.cpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Debug.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Display.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Display.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/GameObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/GameObject.cpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/GameObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/GameObject.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Light.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Light.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Material.cpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Material.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Material.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Matrix4x4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Matrix4x4.cpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Matrix4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Matrix4x4.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/MonoBehaviour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/MonoBehaviour.cpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/MonoBehaviour.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/MonoBehaviour.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/NetworkReachability.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/NetworkReachability.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Object.cpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Object.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/PlayerPrefs.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/PlayerPrefs.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Pose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Pose.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/QualitySettings.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/QualitySettings.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Quaternion.cpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Quaternion.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Rect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Rect.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/RectTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/RectTransform.cpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/RectTransform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/RectTransform.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/RenderTexture.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/RenderTexture.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Renderer.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Renderer.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Rendering/BuiltinRenderTextureType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Rendering/BuiltinRenderTextureType.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Rendering/RenderTargetIdentifier.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Rendering/RenderTargetIdentifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Rendering/RenderTargetIdentifier.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Resolution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Resolution.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/ResourcesAPIInternal.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/ResourcesAPIInternal.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/SceneManagement/Scene.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/SceneManagement/Scene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/SceneManagement/Scene.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/SceneManagement/SceneManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/SceneManagement/SceneManager.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Screen.cpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Screen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Screen.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/ScreenOrientation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/ScreenOrientation.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/ScriptableObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/ScriptableObject.cpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/ScriptableObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/ScriptableObject.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Shader.cpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Shader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Shader.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Sprite.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Sprite.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/StackTraceUtility.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/StackTraceUtility.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Transform.cpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Transform.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Vector2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Vector2.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Vector2Int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Vector2Int.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Vector3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Vector3.cpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Vector3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Vector3.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/Vector4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/Vector4.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.CoreModule/UnityEngine/YieldInstruction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.CoreModule/UnityEngine/YieldInstruction.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.InputLegacyModule/UnityEngine.InputLegacyModule.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #define ASSEMBLY_NAME "UnityEngine.InputLegacyModule.dll" 3 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.InputLegacyModule/UnityEngine/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.InputLegacyModule/UnityEngine/Input.cpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.InputLegacyModule/UnityEngine/Input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.InputLegacyModule/UnityEngine/Input.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.SubsystemsModule/UnityEngine/SubsystemManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.SubsystemsModule/UnityEngine/SubsystemManager.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.SubsystemsModule/UnityEngine/SubsystemsImplementation/SubsystemDescriptorStore.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.SubsystemsModule/UnityEngine/SubsystemsImplementation/SubsystemDescriptorStore.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.TextRenderingModule/UnityEngine.TextRenderingModule.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.TextRenderingModule/UnityEngine/TextGenerationSettings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.TextRenderingModule/UnityEngine/TextGenerationSettings.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.TextRenderingModule/UnityEngine/TextGenerator.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.TextRenderingModule/UnityEngine/TextGenerator.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.UI/UnityEngine.UI.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.UI/UnityEngine/UI/CanvasScaler.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.UI/UnityEngine/UI/CanvasScaler.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.UI/UnityEngine/UI/Text.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.UI/UnityEngine/UI/Text.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.UnityWebRequestModule/UnityEngine.UnityWebRequestModule.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.UnityWebRequestModule/UnityEngine.UnityWebRequestModule.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.UnityWebRequestModule/UnityEngine/Networking/DownloadHandler.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.UnityWebRequestModule/UnityEngine/Networking/DownloadHandler.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.UnityWebRequestModule/UnityEngine/Networking/UnityWebRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.UnityWebRequestModule/UnityEngine/Networking/UnityWebRequest.cpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.UnityWebRequestModule/UnityEngine/Networking/UnityWebRequest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.UnityWebRequestModule/UnityEngine/Networking/UnityWebRequest.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.UnityWebRequestModule/UnityEngine/Networking/UploadHandlerRaw.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.UnityWebRequestModule/UnityEngine/Networking/UploadHandlerRaw.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.XRModule/UnityEngine.XRModule.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #define ASSEMBLY_NAME "UnityEngine.XRModule.dll" 3 | -------------------------------------------------------------------------------- /src/scripts/UnityEngine.XRModule/UnityEngine/XR/AvailableTrackingData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.XRModule/UnityEngine/XR/AvailableTrackingData.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.XRModule/UnityEngine/XR/InputTracking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.XRModule/UnityEngine/XR/InputTracking.cpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.XRModule/UnityEngine/XR/InputTracking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.XRModule/UnityEngine/XR/InputTracking.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.XRModule/UnityEngine/XR/XRNode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.XRModule/UnityEngine/XR/XRNode.hpp -------------------------------------------------------------------------------- /src/scripts/UnityEngine.XRModule/UnityEngine/XR/XRNodeState.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/UnityEngine.XRModule/UnityEngine/XR/XRNodeState.hpp -------------------------------------------------------------------------------- /src/scripts/_Cyan/Cyan/LocalFile/PathResolver.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/_Cyan/Cyan/LocalFile/PathResolver.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/_Cyan/_Cyan.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/mscorlib/System/Boolean.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/mscorlib/System/Boolean.hpp -------------------------------------------------------------------------------- /src/scripts/mscorlib/System/Byte.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/mscorlib/System/Byte.hpp -------------------------------------------------------------------------------- /src/scripts/mscorlib/System/Collections/Generic/Dictionary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/mscorlib/System/Collections/Generic/Dictionary.hpp -------------------------------------------------------------------------------- /src/scripts/mscorlib/System/Collections/Generic/List.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/mscorlib/System/Collections/Generic/List.hpp -------------------------------------------------------------------------------- /src/scripts/mscorlib/System/Enum.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/mscorlib/System/Enum.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/mscorlib/System/Int32.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/mscorlib/System/Nullable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/mscorlib/System/Nullable.hpp -------------------------------------------------------------------------------- /src/scripts/mscorlib/System/ValueTuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/mscorlib/System/ValueTuple.hpp -------------------------------------------------------------------------------- /src/scripts/mscorlib/mscorlib.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #define ASSEMBLY_NAME "mscorlib.dll" 3 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/AudioManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/AudioManager.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/BGManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/BGManager.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/BootSystem.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/BootSystem.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/Certification.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/Certification.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/CharaPropRendererAccessor.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/CharaPropRendererAccessor.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/Connecting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/Connecting.cpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/Connecting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/Connecting.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/CourseBaseObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/CourseBaseObject.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/Cryptographer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/Cryptographer.cpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/Cryptographer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/Cryptographer.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/CutInImageEffectPostRender.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/CutInImageEffectPostRender.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/CySpringController.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/CySpringController.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/DialogCircleItemDonate.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/DialogCircleItemDonate.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/DialogCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/DialogCommon.cpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/DialogCommon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/DialogCommon.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/DialogCommonBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/DialogCommonBase.cpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/DialogCommonBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/DialogCommonBase.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/DialogCommonBaseData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/DialogCommonBaseData.cpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/DialogCommonBaseData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/DialogCommonBaseData.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/DialogManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/DialogManager.cpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/DialogManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/DialogManager.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/DownloadErrorProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/DownloadErrorProcessor.cpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/DownloadErrorProcessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/DownloadErrorProcessor.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/DownloadManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/DownloadManager.cpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/DownloadManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/DownloadManager.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/DownloadView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/DownloadView.cpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/DownloadView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/DownloadView.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/FrameRateController.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/FrameRateController.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/GallopFrameBuffer.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/GallopFrameBuffer.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/GallopInput.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/GallopInput.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/GallopUtil.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/GallopUtil.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/GameSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/GameSystem.cpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/GameSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/GameSystem.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/GraphicSettings.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/GraphicSettings.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/HttpHelper.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/HttpHelper.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/ImageCommon.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/ImageCommon.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/LandscapeUIManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/LandscapeUIManager.cpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/LandscapeUIManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/LandscapeUIManager.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/LimitBreakCut.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/LimitBreakCut.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/Live/Director.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/Live/Director.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/LiveTheaterCharaSelect.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/LiveTheaterCharaSelect.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/LiveViewController.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/LiveViewController.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/LocalPushDefine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/LocalPushDefine.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/Localize.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/Localize.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/LocalizeExtention.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/LocalizeExtention.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/LockableBehaviour.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/LockableBehaviour.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/LowResolutionCameraBase.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/LowResolutionCameraBase.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/LowResolutionCameraUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/LowResolutionCameraUtil.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/MasterCharacterSystemText.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/MasterCharacterSystemText.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/MiniDirector.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/MiniDirector.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/Model/Component/CySpringUpdater.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/Model/Component/CySpringUpdater.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/ModelLoader.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/ModelLoader.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/MonoBehaviourExtension.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/MonoBehaviourExtension.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/MonoFunctionSealedBaseForMonoSingleton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/MonoFunctionSealedBaseForMonoSingleton.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/MonoSingleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/MonoSingleton.cpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/MonoSingleton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/MonoSingleton.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/NowLoading.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/NowLoading.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/PartsBuyJewelListItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/PartsBuyJewelListItem.cpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/PartsBuyJewelListItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/PartsBuyJewelListItem.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/PartsEpisodeList.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/PartsEpisodeList.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/PaymentUtility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/PaymentUtility.cpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/PaymentUtility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/PaymentUtility.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/PushNotificationManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/PushNotificationManager.cpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/PushNotificationManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/PushNotificationManager.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/RaceCameraManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/RaceCameraManager.cpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/RaceCameraManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/RaceCameraManager.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/RaceImageEffect.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/RaceImageEffect.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/RaceLoaderManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/RaceLoaderManager.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/RaceManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/RaceManager.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/RaceUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/RaceUtil.cpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/RaceUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/RaceUtil.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/SceneDefine.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/SceneManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/SceneManager.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/Screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/Screen.cpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/Screen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/Screen.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/Singleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/Singleton.cpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/Singleton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/Singleton.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/StandaloneWindowResize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/StandaloneWindowResize.cpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/StandaloneWindowResize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/StandaloneWindowResize.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/StoryImageEffect.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/StoryImageEffect.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/StoryRaceTextAsset.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/StoryRaceTextAsset.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/StoryTimelineBlockData.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/StoryTimelineBlockData.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/StoryTimelineController.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/StoryTimelineController.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/StoryViewController.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/StoryViewController.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/TapEffectController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/TapEffectController.cpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/TapEffectController.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/TapEffectController.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/TextCommon.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/TextCommon.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/TextId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/TextId.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/TextMeshProUguiCommon.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/TextMeshProUguiCommon.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/TextUtil.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/TextUtil.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/TitleViewController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/TitleViewController.cpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/TitleViewController.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/TitleViewController.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/UIManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/UIManager.cpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/UIManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/UIManager.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/UserChara.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/UserChara.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/WebViewDefine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/WebViewDefine.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/WebViewManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/WebViewManager.cpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/WebViewManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/Gallop/WebViewManager.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/WorkDataManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/Gallop/WorkDataManager.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/umamusume/UncheaterInit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/UncheaterInit.cpp -------------------------------------------------------------------------------- /src/scripts/umamusume/UncheaterInit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/scripts/umamusume/UncheaterInit.hpp -------------------------------------------------------------------------------- /src/scripts/umamusume/umamusume.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #define ASSEMBLY_NAME "umamusume.dll" 3 | -------------------------------------------------------------------------------- /src/scripts/uncheatercsd/Uncheater/SystemBins64.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/uncheatercsd/Uncheater/SystemBins64.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/uncheatercsd/uncheatercsd.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/settings_text.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/settings_text.hpp -------------------------------------------------------------------------------- /src/smtc/SystemMediaTransportControlsManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/smtc/SystemMediaTransportControlsManager.hpp -------------------------------------------------------------------------------- /src/stdinclude.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/stdinclude.hpp -------------------------------------------------------------------------------- /src/steam/steam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/steam/steam.cpp -------------------------------------------------------------------------------- /src/string_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/string_utils.hpp -------------------------------------------------------------------------------- /src/taskbar/TaskbarManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/taskbar/TaskbarManager.hpp -------------------------------------------------------------------------------- /src/unity/IUnityInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/src/unity/IUnityInterface.h -------------------------------------------------------------------------------- /utils/bin/premake5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimjio/umamusume-localify/HEAD/utils/bin/premake5.exe --------------------------------------------------------------------------------