├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets └── launcher-ui │ ├── .gitignore │ ├── .vscode │ └── extensions.json │ ├── README.md │ ├── bin │ └── gen-asset │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── public │ └── favicon.ico │ ├── src │ ├── App.vue │ ├── assets │ │ ├── aero.png │ │ ├── base.css │ │ ├── ddr.avif │ │ ├── ddr.webp │ │ ├── dm_chara.png │ │ ├── gf_chara.png │ │ ├── gitadora.jpg │ │ ├── icons │ │ │ ├── ddr.ico │ │ │ ├── dm.png │ │ │ ├── gf.png │ │ │ ├── gtdr.ico │ │ │ ├── iidx.ico │ │ │ └── sdvx.ico │ │ ├── iidx.jpg │ │ ├── iidx_chara.png │ │ ├── logo.svg │ │ ├── main.css │ │ ├── msyhsb.woff2 │ │ ├── num.jpg │ │ ├── num.mp3 │ │ ├── sdvx.jpg │ │ └── sgm.woff2 │ ├── components │ │ ├── Alert.vue │ │ ├── Num.vue │ │ ├── TitleBar.vue │ │ ├── Version.vue │ │ └── icons │ │ │ ├── IconBack.vue │ │ │ ├── IconClose.vue │ │ │ ├── IconCommunity.vue │ │ │ ├── IconDocumentation.vue │ │ │ ├── IconEcosystem.vue │ │ │ ├── IconMinimize.vue │ │ │ ├── IconSettings.vue │ │ │ ├── IconSupport.vue │ │ │ └── IconTooling.vue │ ├── env.d.ts │ ├── main.ts │ ├── modules │ │ ├── ddr.ts │ │ ├── gameClass.ts │ │ ├── gitadora.ts │ │ ├── iidx.ts │ │ ├── launcher.ts │ │ └── sdvx.ts │ ├── router │ │ └── index.ts │ └── views │ │ ├── HomeView.vue.bak │ │ ├── IIDXSettingView.vue │ │ ├── LauncherSettingView.vue │ │ └── NewHomeView.vue │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── data └── assets │ └── iidx │ ├── difficulty_data.json │ ├── graphic │ └── cloud_loading_ifs │ │ └── cloud_loading_bg.png │ ├── notes_radar │ ├── nradar_charge.png │ ├── nradar_chord.png │ ├── nradar_name.png │ ├── nradar_nodata.png │ ├── nradar_notes.png │ ├── nradar_peak.png │ ├── nradar_scratch.png │ ├── nradar_sof_lan.png │ ├── nradar_waku02.png │ └── radar_star.png │ └── radar_data.json ├── deps ├── extra │ └── udis86 │ │ └── libudis86 │ │ ├── itab.c │ │ └── itab.h ├── nlohmann_json │ └── json.hpp ├── premake │ ├── asmjit.lua │ ├── dearimgui.lua │ ├── gsl.lua │ ├── ifs_layeredfs.lua │ ├── json.lua │ ├── minhook.lua │ ├── saucer.lua │ ├── simdjson.lua │ ├── stb.lua │ ├── udis86.lua │ ├── webview2.lua │ └── zstd.lua ├── saucer │ ├── build-commit.txt │ ├── include │ │ ├── boost │ │ │ ├── callable_traits.hpp │ │ │ └── callable_traits │ │ │ │ ├── add_member_const.hpp │ │ │ │ ├── add_member_cv.hpp │ │ │ │ ├── add_member_lvalue_reference.hpp │ │ │ │ ├── add_member_rvalue_reference.hpp │ │ │ │ ├── add_member_volatile.hpp │ │ │ │ ├── add_noexcept.hpp │ │ │ │ ├── add_transaction_safe.hpp │ │ │ │ ├── add_varargs.hpp │ │ │ │ ├── apply_member_pointer.hpp │ │ │ │ ├── apply_return.hpp │ │ │ │ ├── args.hpp │ │ │ │ ├── class_of.hpp │ │ │ │ ├── detail │ │ │ │ ├── config.hpp │ │ │ │ ├── core.hpp │ │ │ │ ├── default_callable_traits.hpp │ │ │ │ ├── forward_declarations.hpp │ │ │ │ ├── function.hpp │ │ │ │ ├── function_object.hpp │ │ │ │ ├── is_invocable_impl.hpp │ │ │ │ ├── parameter_index_helper.hpp │ │ │ │ ├── pmd.hpp │ │ │ │ ├── pmf.hpp │ │ │ │ ├── polyfills │ │ │ │ │ ├── disjunction.hpp │ │ │ │ │ └── make_index_sequence.hpp │ │ │ │ ├── qualifier_flags.hpp │ │ │ │ ├── set_function_qualifiers.hpp │ │ │ │ ├── sfinae_errors.hpp │ │ │ │ ├── traits.hpp │ │ │ │ ├── unguarded │ │ │ │ │ ├── function.hpp │ │ │ │ │ ├── function_2.hpp │ │ │ │ │ ├── function_3.hpp │ │ │ │ │ ├── function_ptr.hpp │ │ │ │ │ ├── function_ptr_2.hpp │ │ │ │ │ ├── function_ptr_3.hpp │ │ │ │ │ ├── function_ptr_varargs.hpp │ │ │ │ │ ├── function_ptr_varargs_2.hpp │ │ │ │ │ ├── function_ptr_varargs_3.hpp │ │ │ │ │ ├── pmf.hpp │ │ │ │ │ ├── pmf_2.hpp │ │ │ │ │ ├── pmf_3.hpp │ │ │ │ │ ├── pmf_4.hpp │ │ │ │ │ ├── pmf_varargs.hpp │ │ │ │ │ ├── pmf_varargs_2.hpp │ │ │ │ │ ├── pmf_varargs_3.hpp │ │ │ │ │ └── pmf_varargs_4.hpp │ │ │ │ └── utility.hpp │ │ │ │ ├── function_type.hpp │ │ │ │ ├── has_member_qualifiers.hpp │ │ │ │ ├── has_varargs.hpp │ │ │ │ ├── has_void_return.hpp │ │ │ │ ├── is_const_member.hpp │ │ │ │ ├── is_cv_member.hpp │ │ │ │ ├── is_invocable.hpp │ │ │ │ ├── is_lvalue_reference_member.hpp │ │ │ │ ├── is_noexcept.hpp │ │ │ │ ├── is_reference_member.hpp │ │ │ │ ├── is_rvalue_reference_member.hpp │ │ │ │ ├── is_transaction_safe.hpp │ │ │ │ ├── is_volatile_member.hpp │ │ │ │ ├── qualified_class_of.hpp │ │ │ │ ├── remove_member_const.hpp │ │ │ │ ├── remove_member_cv.hpp │ │ │ │ ├── remove_member_reference.hpp │ │ │ │ ├── remove_member_volatile.hpp │ │ │ │ ├── remove_noexcept.hpp │ │ │ │ ├── remove_transaction_safe.hpp │ │ │ │ ├── remove_varargs.hpp │ │ │ │ └── return_type.hpp │ │ ├── ereignis │ │ │ ├── event.hpp │ │ │ ├── event.inl │ │ │ ├── invoker.hpp │ │ │ ├── invoker.inl │ │ │ ├── manager.hpp │ │ │ └── manager.inl │ │ ├── flagpp │ │ │ ├── flags.hpp │ │ │ └── flags.inl │ │ ├── fmt │ │ │ ├── args.h │ │ │ ├── chrono.h │ │ │ ├── color.h │ │ │ ├── compile.h │ │ │ ├── core.h │ │ │ ├── format-inl.h │ │ │ ├── format.h │ │ │ ├── os.h │ │ │ ├── ostream.h │ │ │ ├── printf.h │ │ │ ├── ranges.h │ │ │ ├── std.h │ │ │ └── xchar.h │ │ ├── glaze │ │ │ ├── api │ │ │ │ ├── api.hpp │ │ │ │ ├── hash.hpp │ │ │ │ ├── impl.hpp │ │ │ │ ├── lib.hpp │ │ │ │ ├── std │ │ │ │ │ ├── array.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── functional.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── optional.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── shared_ptr.hpp │ │ │ │ │ ├── span.hpp │ │ │ │ │ ├── string.hpp │ │ │ │ │ ├── tuple.hpp │ │ │ │ │ ├── unique_ptr.hpp │ │ │ │ │ ├── unordered_map.hpp │ │ │ │ │ ├── unordered_set.hpp │ │ │ │ │ ├── variant.hpp │ │ │ │ │ └── vector.hpp │ │ │ │ ├── trait.hpp │ │ │ │ ├── tuplet.hpp │ │ │ │ ├── type_support.hpp │ │ │ │ └── xxh64.hpp │ │ │ ├── binary.hpp │ │ │ ├── binary │ │ │ │ ├── beve_to_json.hpp │ │ │ │ ├── custom.hpp │ │ │ │ ├── header.hpp │ │ │ │ ├── ptr.hpp │ │ │ │ ├── read.hpp │ │ │ │ ├── skip.hpp │ │ │ │ ├── wrappers.hpp │ │ │ │ └── write.hpp │ │ │ ├── compare │ │ │ │ ├── approx.hpp │ │ │ │ └── compare.hpp │ │ │ ├── concepts │ │ │ │ └── container_concepts.hpp │ │ │ ├── core │ │ │ │ ├── common.hpp │ │ │ │ ├── context.hpp │ │ │ │ ├── meta.hpp │ │ │ │ ├── opts.hpp │ │ │ │ ├── ptr.hpp │ │ │ │ ├── read.hpp │ │ │ │ ├── reflection_tuple.hpp │ │ │ │ ├── seek.hpp │ │ │ │ ├── wrappers.hpp │ │ │ │ ├── write.hpp │ │ │ │ └── write_chars.hpp │ │ │ ├── csv.hpp │ │ │ ├── csv │ │ │ │ ├── read.hpp │ │ │ │ └── write.hpp │ │ │ ├── exceptions │ │ │ │ ├── binary_exceptions.hpp │ │ │ │ ├── core_exceptions.hpp │ │ │ │ ├── csv_exceptions.hpp │ │ │ │ ├── json_exceptions.hpp │ │ │ │ └── json_schema_exceptions.hpp │ │ │ ├── ext │ │ │ │ ├── README.md │ │ │ │ ├── cli_menu.hpp │ │ │ │ ├── eigen.hpp │ │ │ │ ├── glaze_asio.hpp │ │ │ │ └── jsonrpc.hpp │ │ │ ├── file │ │ │ │ ├── file_ops.hpp │ │ │ │ ├── file_watch.hpp │ │ │ │ ├── hostname_include.hpp │ │ │ │ └── raw_or_file.hpp │ │ │ ├── glaze.hpp │ │ │ ├── glaze_exceptions.hpp │ │ │ ├── hardware │ │ │ │ └── volatile_array.hpp │ │ │ ├── json.hpp │ │ │ ├── json │ │ │ │ ├── custom.hpp │ │ │ │ ├── invoke.hpp │ │ │ │ ├── json_format.hpp │ │ │ │ ├── json_ptr.hpp │ │ │ │ ├── json_t.hpp │ │ │ │ ├── manage.hpp │ │ │ │ ├── max_write_precision.hpp │ │ │ │ ├── minify.hpp │ │ │ │ ├── ndjson.hpp │ │ │ │ ├── prettify.hpp │ │ │ │ ├── ptr.hpp │ │ │ │ ├── raw_string.hpp │ │ │ │ ├── read.hpp │ │ │ │ ├── schema.hpp │ │ │ │ ├── skip.hpp │ │ │ │ ├── study.hpp │ │ │ │ ├── wrappers.hpp │ │ │ │ └── write.hpp │ │ │ ├── record │ │ │ │ └── recorder.hpp │ │ │ ├── reflection │ │ │ │ ├── get_name.hpp │ │ │ │ ├── reflect.hpp │ │ │ │ └── to_tuple.hpp │ │ │ ├── rpc │ │ │ │ └── repe.hpp │ │ │ ├── thread │ │ │ │ └── threadpool.hpp │ │ │ ├── trace │ │ │ │ └── trace.hpp │ │ │ ├── tuplet │ │ │ │ └── tuple.hpp │ │ │ └── util │ │ │ │ ├── any.hpp │ │ │ │ ├── bit_array.hpp │ │ │ │ ├── comment.hpp │ │ │ │ ├── compare.hpp │ │ │ │ ├── dtoa.hpp │ │ │ │ ├── dump.hpp │ │ │ │ ├── expected.hpp │ │ │ │ ├── for_each.hpp │ │ │ │ ├── hash_map.hpp │ │ │ │ ├── help.hpp │ │ │ │ ├── inline.hpp │ │ │ │ ├── itoa.hpp │ │ │ │ ├── murmur.hpp │ │ │ │ ├── parse.hpp │ │ │ │ ├── poly.hpp │ │ │ │ ├── progress_bar.hpp │ │ │ │ ├── stoui64.hpp │ │ │ │ ├── string_literal.hpp │ │ │ │ ├── strod.hpp │ │ │ │ ├── tuple.hpp │ │ │ │ ├── type_traits.hpp │ │ │ │ ├── utility.hpp │ │ │ │ ├── validate.hpp │ │ │ │ └── variant.hpp │ │ ├── lockpp │ │ │ ├── lock.hpp │ │ │ ├── lock.inl │ │ │ ├── locked.hpp │ │ │ ├── locked.inl │ │ │ └── traits.hpp │ │ ├── saucer │ │ │ ├── modules │ │ │ │ ├── module.hpp │ │ │ │ └── native │ │ │ │ │ ├── qt.hpp │ │ │ │ │ └── webview2.hpp │ │ │ ├── serializers │ │ │ │ ├── args │ │ │ │ │ ├── args.hpp │ │ │ │ │ └── args.inl │ │ │ │ ├── data.hpp │ │ │ │ ├── errors │ │ │ │ │ ├── bad_function.hpp │ │ │ │ │ ├── bad_type.hpp │ │ │ │ │ ├── error.hpp │ │ │ │ │ └── serialize.hpp │ │ │ │ ├── glaze │ │ │ │ │ ├── glaze.hpp │ │ │ │ │ └── glaze.inl │ │ │ │ └── serializer.hpp │ │ │ ├── smartview.hpp │ │ │ ├── smartview.inl │ │ │ ├── utils │ │ │ │ ├── future.hpp │ │ │ │ └── future.inl │ │ │ ├── webview.hpp │ │ │ └── window.hpp │ │ └── tl │ │ │ └── expected.hpp │ ├── lib │ │ ├── debug │ │ │ ├── cmake │ │ │ │ └── fmt │ │ │ │ │ ├── fmt-config-version.cmake │ │ │ │ │ ├── fmt-config.cmake │ │ │ │ │ ├── fmt-targets-debug.cmake │ │ │ │ │ └── fmt-targets.cmake │ │ │ ├── fmtd.lib │ │ │ ├── pkgconfig │ │ │ │ └── fmt.pc │ │ │ └── saucer.lib │ │ └── release │ │ │ ├── cmake │ │ │ └── fmt │ │ │ │ ├── fmt-config-version.cmake │ │ │ │ ├── fmt-config.cmake │ │ │ │ ├── fmt-targets-relwithdebinfo.cmake │ │ │ │ └── fmt-targets.cmake │ │ │ ├── fmt.lib │ │ │ ├── pkgconfig │ │ │ └── fmt.pc │ │ │ └── saucer.lib │ └── share │ │ ├── cmake │ │ └── tl-expected │ │ │ ├── tl-expected-config-version.cmake │ │ │ ├── tl-expected-config.cmake │ │ │ └── tl-expected-targets.cmake │ │ └── glaze │ │ ├── glazeConfig.cmake │ │ ├── glazeConfigVersion.cmake │ │ └── glazeTargets.cmake ├── simdjson │ ├── simdjson.cpp │ └── simdjson.h └── webview2 │ ├── include │ ├── WebView2.h │ └── WebView2EnvironmentOptions.h │ └── lib │ └── WebView2LoaderStatic.lib ├── generate.bat ├── premake5.lua ├── src ├── client │ ├── component │ │ ├── ddr │ │ │ ├── env.cpp │ │ │ └── patches.cpp │ │ ├── exception.cpp │ │ ├── filesystem.cpp │ │ ├── filesystem.hpp │ │ ├── gitadora │ │ │ ├── env.cpp │ │ │ └── patches.cpp │ │ ├── icp_bypass.cpp │ │ ├── iidx │ │ │ ├── analyze.cpp │ │ │ ├── analyze.hpp │ │ │ ├── chart_modifier.cpp │ │ │ ├── chart_modifier.hpp │ │ │ ├── custom_resolution.cpp │ │ │ ├── custom_resolution.hpp │ │ │ ├── d3d9_proxy │ │ │ │ ├── device_ex.cpp │ │ │ │ ├── device_ex.hpp │ │ │ │ ├── interface_ex.cpp │ │ │ │ └── interface_ex.hpp │ │ │ ├── env.cpp │ │ │ ├── env.hpp │ │ │ ├── external_modules.cpp │ │ │ ├── omnimix.cpp │ │ │ ├── overlay.cpp │ │ │ └── patches.cpp │ │ ├── logger.cpp │ │ ├── sdvx │ │ │ ├── env.cpp │ │ │ └── patches.cpp │ │ ├── shiftjis.cpp │ │ ├── steam_proxy.cpp │ │ └── steam_proxy.hpp │ ├── game │ │ ├── avs2.hpp │ │ ├── game.cpp │ │ ├── game.hpp │ │ ├── iidx │ │ │ ├── struct.hpp │ │ │ └── symbols.hpp │ │ ├── struct.hpp │ │ └── symbols.hpp │ ├── launcher │ │ ├── launcher.cpp │ │ ├── launcher.hpp │ │ ├── launcher_module.cpp │ │ └── launcher_module.hpp │ ├── loader │ │ ├── component_interface.hpp │ │ ├── component_loader.cpp │ │ ├── component_loader.hpp │ │ ├── loader.cpp │ │ └── loader.hpp │ ├── main.cpp │ ├── resource.g.hpp │ ├── resource.g.rc │ ├── resource.hpp │ ├── resource.rc │ ├── resources │ │ ├── all.hpp │ │ ├── icon.ico │ │ └── ui-dist │ │ │ ├── assets │ │ │ ├── aero-CZ6BZh4F.png.zst │ │ │ ├── ddr-BmtkgcJb.webp │ │ │ ├── ddr-LCq_LvSa.ico.zst │ │ │ ├── dm_chara-Bmqo60mo.png.zst │ │ │ ├── gf_chara-B0QvKm_g.png.zst │ │ │ ├── gitadora-DFqMpK2F.jpg.zst │ │ │ ├── gtdr-sRWUTLFt.ico.zst │ │ │ ├── howler-DR5KLX7K.js.zst │ │ │ ├── iidx-CFUAx3V2.jpg.zst │ │ │ ├── iidx-CigaWHLQ.ico.zst │ │ │ ├── iidx_chara-B1fwrXHd.png.zst │ │ │ ├── index-BREZ-GVy.css.zst │ │ │ ├── index-BSXl3KHo.js.zst │ │ │ ├── msyhsb-teYSJU3-.woff2.zst │ │ │ ├── num-DOiIrgmq.jpg.zst │ │ │ ├── num-z0VsZKpR.mp3.zst │ │ │ ├── sdvx-OL-KBV4E.jpg.zst │ │ │ ├── sdvx-R2F0Wv1S.ico.zst │ │ │ └── sgm-BpMyBNft.woff2 │ │ │ ├── favicon.ico.zst │ │ │ └── index.html.zst │ ├── std_include.cpp │ ├── std_include.hpp │ └── steam │ │ ├── interface.cpp │ │ ├── interface.hpp │ │ ├── steam.cpp │ │ └── steam.hpp ├── common │ ├── exception │ │ ├── minidump.cpp │ │ └── minidump.hpp │ └── utils │ │ ├── binary_resource.cpp │ │ ├── binary_resource.hpp │ │ ├── compression.cpp │ │ ├── compression.hpp │ │ ├── concurrency.hpp │ │ ├── flags.cpp │ │ ├── flags.hpp │ │ ├── hook.cpp │ │ ├── hook.hpp │ │ ├── http.cpp │ │ ├── http.hpp │ │ ├── image.cpp │ │ ├── image.hpp │ │ ├── info_string.cpp │ │ ├── info_string.hpp │ │ ├── io.cpp │ │ ├── io.hpp │ │ ├── memory.cpp │ │ ├── memory.hpp │ │ ├── nt.cpp │ │ ├── nt.hpp │ │ ├── signature.cpp │ │ ├── signature.hpp │ │ ├── smbios.cpp │ │ ├── smbios.hpp │ │ ├── string.cpp │ │ ├── string.hpp │ │ ├── thread.cpp │ │ └── thread.hpp └── runner │ ├── debugger.cpp │ ├── debugger.hpp │ ├── resource.rc │ └── runner.cpp └── tools ├── download_2dxgsm.ps1 └── premake5.exe /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Laochan Client 2 | 3 | -------------------------------------------------------------------------------- /assets/launcher-ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/.gitignore -------------------------------------------------------------------------------- /assets/launcher-ui/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["Vue.volar"] 3 | } 4 | -------------------------------------------------------------------------------- /assets/launcher-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/README.md -------------------------------------------------------------------------------- /assets/launcher-ui/bin/gen-asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/bin/gen-asset -------------------------------------------------------------------------------- /assets/launcher-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/index.html -------------------------------------------------------------------------------- /assets/launcher-ui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/package-lock.json -------------------------------------------------------------------------------- /assets/launcher-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/package.json -------------------------------------------------------------------------------- /assets/launcher-ui/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/public/favicon.ico -------------------------------------------------------------------------------- /assets/launcher-ui/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/App.vue -------------------------------------------------------------------------------- /assets/launcher-ui/src/assets/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/assets/aero.png -------------------------------------------------------------------------------- /assets/launcher-ui/src/assets/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/assets/base.css -------------------------------------------------------------------------------- /assets/launcher-ui/src/assets/ddr.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/assets/ddr.avif -------------------------------------------------------------------------------- /assets/launcher-ui/src/assets/ddr.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/assets/ddr.webp -------------------------------------------------------------------------------- /assets/launcher-ui/src/assets/dm_chara.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/assets/dm_chara.png -------------------------------------------------------------------------------- /assets/launcher-ui/src/assets/gf_chara.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/assets/gf_chara.png -------------------------------------------------------------------------------- /assets/launcher-ui/src/assets/gitadora.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/assets/gitadora.jpg -------------------------------------------------------------------------------- /assets/launcher-ui/src/assets/icons/ddr.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/assets/icons/ddr.ico -------------------------------------------------------------------------------- /assets/launcher-ui/src/assets/icons/dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/assets/icons/dm.png -------------------------------------------------------------------------------- /assets/launcher-ui/src/assets/icons/gf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/assets/icons/gf.png -------------------------------------------------------------------------------- /assets/launcher-ui/src/assets/icons/gtdr.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/assets/icons/gtdr.ico -------------------------------------------------------------------------------- /assets/launcher-ui/src/assets/icons/iidx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/assets/icons/iidx.ico -------------------------------------------------------------------------------- /assets/launcher-ui/src/assets/icons/sdvx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/assets/icons/sdvx.ico -------------------------------------------------------------------------------- /assets/launcher-ui/src/assets/iidx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/assets/iidx.jpg -------------------------------------------------------------------------------- /assets/launcher-ui/src/assets/iidx_chara.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/assets/iidx_chara.png -------------------------------------------------------------------------------- /assets/launcher-ui/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/assets/logo.svg -------------------------------------------------------------------------------- /assets/launcher-ui/src/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/assets/main.css -------------------------------------------------------------------------------- /assets/launcher-ui/src/assets/msyhsb.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/assets/msyhsb.woff2 -------------------------------------------------------------------------------- /assets/launcher-ui/src/assets/num.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/assets/num.jpg -------------------------------------------------------------------------------- /assets/launcher-ui/src/assets/num.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/assets/num.mp3 -------------------------------------------------------------------------------- /assets/launcher-ui/src/assets/sdvx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/assets/sdvx.jpg -------------------------------------------------------------------------------- /assets/launcher-ui/src/assets/sgm.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/assets/sgm.woff2 -------------------------------------------------------------------------------- /assets/launcher-ui/src/components/Alert.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/components/Alert.vue -------------------------------------------------------------------------------- /assets/launcher-ui/src/components/Num.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/components/Num.vue -------------------------------------------------------------------------------- /assets/launcher-ui/src/components/TitleBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/components/TitleBar.vue -------------------------------------------------------------------------------- /assets/launcher-ui/src/components/Version.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/components/Version.vue -------------------------------------------------------------------------------- /assets/launcher-ui/src/components/icons/IconBack.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/components/icons/IconBack.vue -------------------------------------------------------------------------------- /assets/launcher-ui/src/components/icons/IconClose.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/components/icons/IconClose.vue -------------------------------------------------------------------------------- /assets/launcher-ui/src/components/icons/IconCommunity.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/components/icons/IconCommunity.vue -------------------------------------------------------------------------------- /assets/launcher-ui/src/components/icons/IconDocumentation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/components/icons/IconDocumentation.vue -------------------------------------------------------------------------------- /assets/launcher-ui/src/components/icons/IconEcosystem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/components/icons/IconEcosystem.vue -------------------------------------------------------------------------------- /assets/launcher-ui/src/components/icons/IconMinimize.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/components/icons/IconMinimize.vue -------------------------------------------------------------------------------- /assets/launcher-ui/src/components/icons/IconSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/components/icons/IconSettings.vue -------------------------------------------------------------------------------- /assets/launcher-ui/src/components/icons/IconSupport.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/components/icons/IconSupport.vue -------------------------------------------------------------------------------- /assets/launcher-ui/src/components/icons/IconTooling.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/components/icons/IconTooling.vue -------------------------------------------------------------------------------- /assets/launcher-ui/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/env.d.ts -------------------------------------------------------------------------------- /assets/launcher-ui/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/main.ts -------------------------------------------------------------------------------- /assets/launcher-ui/src/modules/ddr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/modules/ddr.ts -------------------------------------------------------------------------------- /assets/launcher-ui/src/modules/gameClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/modules/gameClass.ts -------------------------------------------------------------------------------- /assets/launcher-ui/src/modules/gitadora.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/modules/gitadora.ts -------------------------------------------------------------------------------- /assets/launcher-ui/src/modules/iidx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/modules/iidx.ts -------------------------------------------------------------------------------- /assets/launcher-ui/src/modules/launcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/modules/launcher.ts -------------------------------------------------------------------------------- /assets/launcher-ui/src/modules/sdvx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/modules/sdvx.ts -------------------------------------------------------------------------------- /assets/launcher-ui/src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/router/index.ts -------------------------------------------------------------------------------- /assets/launcher-ui/src/views/HomeView.vue.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/views/HomeView.vue.bak -------------------------------------------------------------------------------- /assets/launcher-ui/src/views/IIDXSettingView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/views/IIDXSettingView.vue -------------------------------------------------------------------------------- /assets/launcher-ui/src/views/LauncherSettingView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/views/LauncherSettingView.vue -------------------------------------------------------------------------------- /assets/launcher-ui/src/views/NewHomeView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/src/views/NewHomeView.vue -------------------------------------------------------------------------------- /assets/launcher-ui/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/tsconfig.app.json -------------------------------------------------------------------------------- /assets/launcher-ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/tsconfig.json -------------------------------------------------------------------------------- /assets/launcher-ui/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/tsconfig.node.json -------------------------------------------------------------------------------- /assets/launcher-ui/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/assets/launcher-ui/vite.config.ts -------------------------------------------------------------------------------- /data/assets/iidx/difficulty_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/data/assets/iidx/difficulty_data.json -------------------------------------------------------------------------------- /data/assets/iidx/graphic/cloud_loading_ifs/cloud_loading_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/data/assets/iidx/graphic/cloud_loading_ifs/cloud_loading_bg.png -------------------------------------------------------------------------------- /data/assets/iidx/notes_radar/nradar_charge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/data/assets/iidx/notes_radar/nradar_charge.png -------------------------------------------------------------------------------- /data/assets/iidx/notes_radar/nradar_chord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/data/assets/iidx/notes_radar/nradar_chord.png -------------------------------------------------------------------------------- /data/assets/iidx/notes_radar/nradar_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/data/assets/iidx/notes_radar/nradar_name.png -------------------------------------------------------------------------------- /data/assets/iidx/notes_radar/nradar_nodata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/data/assets/iidx/notes_radar/nradar_nodata.png -------------------------------------------------------------------------------- /data/assets/iidx/notes_radar/nradar_notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/data/assets/iidx/notes_radar/nradar_notes.png -------------------------------------------------------------------------------- /data/assets/iidx/notes_radar/nradar_peak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/data/assets/iidx/notes_radar/nradar_peak.png -------------------------------------------------------------------------------- /data/assets/iidx/notes_radar/nradar_scratch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/data/assets/iidx/notes_radar/nradar_scratch.png -------------------------------------------------------------------------------- /data/assets/iidx/notes_radar/nradar_sof_lan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/data/assets/iidx/notes_radar/nradar_sof_lan.png -------------------------------------------------------------------------------- /data/assets/iidx/notes_radar/nradar_waku02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/data/assets/iidx/notes_radar/nradar_waku02.png -------------------------------------------------------------------------------- /data/assets/iidx/notes_radar/radar_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/data/assets/iidx/notes_radar/radar_star.png -------------------------------------------------------------------------------- /data/assets/iidx/radar_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/data/assets/iidx/radar_data.json -------------------------------------------------------------------------------- /deps/extra/udis86/libudis86/itab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/extra/udis86/libudis86/itab.c -------------------------------------------------------------------------------- /deps/extra/udis86/libudis86/itab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/extra/udis86/libudis86/itab.h -------------------------------------------------------------------------------- /deps/nlohmann_json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/nlohmann_json/json.hpp -------------------------------------------------------------------------------- /deps/premake/asmjit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/premake/asmjit.lua -------------------------------------------------------------------------------- /deps/premake/dearimgui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/premake/dearimgui.lua -------------------------------------------------------------------------------- /deps/premake/gsl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/premake/gsl.lua -------------------------------------------------------------------------------- /deps/premake/ifs_layeredfs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/premake/ifs_layeredfs.lua -------------------------------------------------------------------------------- /deps/premake/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/premake/json.lua -------------------------------------------------------------------------------- /deps/premake/minhook.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/premake/minhook.lua -------------------------------------------------------------------------------- /deps/premake/saucer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/premake/saucer.lua -------------------------------------------------------------------------------- /deps/premake/simdjson.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/premake/simdjson.lua -------------------------------------------------------------------------------- /deps/premake/stb.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/premake/stb.lua -------------------------------------------------------------------------------- /deps/premake/udis86.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/premake/udis86.lua -------------------------------------------------------------------------------- /deps/premake/webview2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/premake/webview2.lua -------------------------------------------------------------------------------- /deps/premake/zstd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/premake/zstd.lua -------------------------------------------------------------------------------- /deps/saucer/build-commit.txt: -------------------------------------------------------------------------------- 1 | f0a8d22 -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/add_member_const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/add_member_const.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/add_member_cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/add_member_cv.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/add_member_lvalue_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/add_member_lvalue_reference.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/add_member_rvalue_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/add_member_rvalue_reference.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/add_member_volatile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/add_member_volatile.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/add_noexcept.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/add_noexcept.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/add_transaction_safe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/add_transaction_safe.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/add_varargs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/add_varargs.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/apply_member_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/apply_member_pointer.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/apply_return.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/apply_return.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/args.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/args.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/class_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/class_of.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/config.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/core.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/default_callable_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/default_callable_traits.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/forward_declarations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/forward_declarations.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/function.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/function_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/function_object.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/is_invocable_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/is_invocable_impl.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/parameter_index_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/parameter_index_helper.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/pmd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/pmd.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/pmf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/pmf.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/polyfills/disjunction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/polyfills/disjunction.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/polyfills/make_index_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/polyfills/make_index_sequence.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/qualifier_flags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/qualifier_flags.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/set_function_qualifiers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/set_function_qualifiers.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/sfinae_errors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/sfinae_errors.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/traits.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/unguarded/function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/unguarded/function.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/unguarded/function_2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/unguarded/function_2.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/unguarded/function_3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/unguarded/function_3.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/unguarded/function_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/unguarded/function_ptr.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/unguarded/function_ptr_2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/unguarded/function_ptr_2.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/unguarded/function_ptr_3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/unguarded/function_ptr_3.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/unguarded/function_ptr_varargs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/unguarded/function_ptr_varargs.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/unguarded/function_ptr_varargs_2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/unguarded/function_ptr_varargs_2.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/unguarded/function_ptr_varargs_3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/unguarded/function_ptr_varargs_3.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/unguarded/pmf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/unguarded/pmf.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/unguarded/pmf_2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/unguarded/pmf_2.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/unguarded/pmf_3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/unguarded/pmf_3.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/unguarded/pmf_4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/unguarded/pmf_4.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/unguarded/pmf_varargs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/unguarded/pmf_varargs.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/unguarded/pmf_varargs_2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/unguarded/pmf_varargs_2.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/unguarded/pmf_varargs_3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/unguarded/pmf_varargs_3.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/unguarded/pmf_varargs_4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/unguarded/pmf_varargs_4.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/detail/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/detail/utility.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/function_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/function_type.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/has_member_qualifiers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/has_member_qualifiers.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/has_varargs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/has_varargs.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/has_void_return.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/has_void_return.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/is_const_member.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/is_const_member.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/is_cv_member.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/is_cv_member.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/is_invocable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/is_invocable.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/is_lvalue_reference_member.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/is_lvalue_reference_member.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/is_noexcept.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/is_noexcept.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/is_reference_member.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/is_reference_member.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/is_rvalue_reference_member.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/is_rvalue_reference_member.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/is_transaction_safe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/is_transaction_safe.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/is_volatile_member.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/is_volatile_member.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/qualified_class_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/qualified_class_of.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/remove_member_const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/remove_member_const.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/remove_member_cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/remove_member_cv.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/remove_member_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/remove_member_reference.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/remove_member_volatile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/remove_member_volatile.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/remove_noexcept.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/remove_noexcept.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/remove_transaction_safe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/remove_transaction_safe.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/remove_varargs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/remove_varargs.hpp -------------------------------------------------------------------------------- /deps/saucer/include/boost/callable_traits/return_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/boost/callable_traits/return_type.hpp -------------------------------------------------------------------------------- /deps/saucer/include/ereignis/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/ereignis/event.hpp -------------------------------------------------------------------------------- /deps/saucer/include/ereignis/event.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/ereignis/event.inl -------------------------------------------------------------------------------- /deps/saucer/include/ereignis/invoker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/ereignis/invoker.hpp -------------------------------------------------------------------------------- /deps/saucer/include/ereignis/invoker.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/ereignis/invoker.inl -------------------------------------------------------------------------------- /deps/saucer/include/ereignis/manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/ereignis/manager.hpp -------------------------------------------------------------------------------- /deps/saucer/include/ereignis/manager.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/ereignis/manager.inl -------------------------------------------------------------------------------- /deps/saucer/include/flagpp/flags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/flagpp/flags.hpp -------------------------------------------------------------------------------- /deps/saucer/include/flagpp/flags.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/flagpp/flags.inl -------------------------------------------------------------------------------- /deps/saucer/include/fmt/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/fmt/args.h -------------------------------------------------------------------------------- /deps/saucer/include/fmt/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/fmt/chrono.h -------------------------------------------------------------------------------- /deps/saucer/include/fmt/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/fmt/color.h -------------------------------------------------------------------------------- /deps/saucer/include/fmt/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/fmt/compile.h -------------------------------------------------------------------------------- /deps/saucer/include/fmt/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/fmt/core.h -------------------------------------------------------------------------------- /deps/saucer/include/fmt/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/fmt/format-inl.h -------------------------------------------------------------------------------- /deps/saucer/include/fmt/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/fmt/format.h -------------------------------------------------------------------------------- /deps/saucer/include/fmt/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/fmt/os.h -------------------------------------------------------------------------------- /deps/saucer/include/fmt/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/fmt/ostream.h -------------------------------------------------------------------------------- /deps/saucer/include/fmt/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/fmt/printf.h -------------------------------------------------------------------------------- /deps/saucer/include/fmt/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/fmt/ranges.h -------------------------------------------------------------------------------- /deps/saucer/include/fmt/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/fmt/std.h -------------------------------------------------------------------------------- /deps/saucer/include/fmt/xchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/fmt/xchar.h -------------------------------------------------------------------------------- /deps/saucer/include/glaze/api/api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/api/api.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/api/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/api/hash.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/api/impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/api/impl.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/api/lib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/api/lib.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/api/std/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/api/std/array.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/api/std/deque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/api/std/deque.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/api/std/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/api/std/functional.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/api/std/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/api/std/list.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/api/std/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/api/std/map.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/api/std/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/api/std/optional.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/api/std/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/api/std/set.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/api/std/shared_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/api/std/shared_ptr.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/api/std/span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/api/std/span.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/api/std/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/api/std/string.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/api/std/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/api/std/tuple.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/api/std/unique_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/api/std/unique_ptr.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/api/std/unordered_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/api/std/unordered_map.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/api/std/unordered_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/api/std/unordered_set.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/api/std/variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/api/std/variant.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/api/std/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/api/std/vector.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/api/trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/api/trait.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/api/tuplet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/api/tuplet.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/api/type_support.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/api/type_support.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/api/xxh64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/api/xxh64.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/binary.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/binary/beve_to_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/binary/beve_to_json.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/binary/custom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/binary/custom.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/binary/header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/binary/header.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/binary/ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/binary/ptr.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/binary/read.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/binary/read.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/binary/skip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/binary/skip.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/binary/wrappers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/binary/wrappers.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/binary/write.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/binary/write.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/compare/approx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/compare/approx.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/compare/compare.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/compare/compare.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/concepts/container_concepts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/concepts/container_concepts.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/core/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/core/common.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/core/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/core/context.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/core/meta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/core/meta.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/core/opts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/core/opts.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/core/ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/core/ptr.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/core/read.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/core/read.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/core/reflection_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/core/reflection_tuple.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/core/seek.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/core/seek.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/core/wrappers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/core/wrappers.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/core/write.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/core/write.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/core/write_chars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/core/write_chars.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/csv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/csv.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/csv/read.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/csv/read.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/csv/write.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/csv/write.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/exceptions/binary_exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/exceptions/binary_exceptions.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/exceptions/core_exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/exceptions/core_exceptions.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/exceptions/csv_exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/exceptions/csv_exceptions.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/exceptions/json_exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/exceptions/json_exceptions.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/exceptions/json_schema_exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/exceptions/json_schema_exceptions.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/ext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/ext/README.md -------------------------------------------------------------------------------- /deps/saucer/include/glaze/ext/cli_menu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/ext/cli_menu.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/ext/eigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/ext/eigen.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/ext/glaze_asio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/ext/glaze_asio.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/ext/jsonrpc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/ext/jsonrpc.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/file/file_ops.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/file/file_ops.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/file/file_watch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/file/file_watch.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/file/hostname_include.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/file/hostname_include.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/file/raw_or_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/file/raw_or_file.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/glaze.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/glaze.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/glaze_exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/glaze_exceptions.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/hardware/volatile_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/hardware/volatile_array.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/json.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/json/custom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/json/custom.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/json/invoke.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/json/invoke.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/json/json_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/json/json_format.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/json/json_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/json/json_ptr.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/json/json_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/json/json_t.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/json/manage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/json/manage.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/json/max_write_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/json/max_write_precision.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/json/minify.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/json/minify.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/json/ndjson.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/json/ndjson.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/json/prettify.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/json/prettify.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/json/ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/json/ptr.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/json/raw_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/json/raw_string.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/json/read.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/json/read.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/json/schema.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/json/schema.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/json/skip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/json/skip.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/json/study.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/json/study.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/json/wrappers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/json/wrappers.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/json/write.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/json/write.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/record/recorder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/record/recorder.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/reflection/get_name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/reflection/get_name.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/reflection/reflect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/reflection/reflect.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/reflection/to_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/reflection/to_tuple.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/rpc/repe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/rpc/repe.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/thread/threadpool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/thread/threadpool.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/trace/trace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/trace/trace.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/tuplet/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/tuplet/tuple.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/util/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/util/any.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/util/bit_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/util/bit_array.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/util/comment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/util/comment.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/util/compare.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/util/compare.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/util/dtoa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/util/dtoa.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/util/dump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/util/dump.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/util/expected.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/util/expected.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/util/for_each.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/util/for_each.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/util/hash_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/util/hash_map.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/util/help.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/util/help.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/util/inline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/util/inline.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/util/itoa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/util/itoa.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/util/murmur.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/util/murmur.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/util/parse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/util/parse.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/util/poly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/util/poly.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/util/progress_bar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/util/progress_bar.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/util/stoui64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/util/stoui64.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/util/string_literal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/util/string_literal.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/util/strod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/util/strod.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/util/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/util/tuple.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/util/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/util/type_traits.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/util/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/util/utility.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/util/validate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/util/validate.hpp -------------------------------------------------------------------------------- /deps/saucer/include/glaze/util/variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/glaze/util/variant.hpp -------------------------------------------------------------------------------- /deps/saucer/include/lockpp/lock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/lockpp/lock.hpp -------------------------------------------------------------------------------- /deps/saucer/include/lockpp/lock.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/lockpp/lock.inl -------------------------------------------------------------------------------- /deps/saucer/include/lockpp/locked.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/lockpp/locked.hpp -------------------------------------------------------------------------------- /deps/saucer/include/lockpp/locked.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/lockpp/locked.inl -------------------------------------------------------------------------------- /deps/saucer/include/lockpp/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/lockpp/traits.hpp -------------------------------------------------------------------------------- /deps/saucer/include/saucer/modules/module.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/saucer/modules/module.hpp -------------------------------------------------------------------------------- /deps/saucer/include/saucer/modules/native/qt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/saucer/modules/native/qt.hpp -------------------------------------------------------------------------------- /deps/saucer/include/saucer/modules/native/webview2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/saucer/modules/native/webview2.hpp -------------------------------------------------------------------------------- /deps/saucer/include/saucer/serializers/args/args.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/saucer/serializers/args/args.hpp -------------------------------------------------------------------------------- /deps/saucer/include/saucer/serializers/args/args.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/saucer/serializers/args/args.inl -------------------------------------------------------------------------------- /deps/saucer/include/saucer/serializers/data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/saucer/serializers/data.hpp -------------------------------------------------------------------------------- /deps/saucer/include/saucer/serializers/errors/bad_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/saucer/serializers/errors/bad_function.hpp -------------------------------------------------------------------------------- /deps/saucer/include/saucer/serializers/errors/bad_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/saucer/serializers/errors/bad_type.hpp -------------------------------------------------------------------------------- /deps/saucer/include/saucer/serializers/errors/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/saucer/serializers/errors/error.hpp -------------------------------------------------------------------------------- /deps/saucer/include/saucer/serializers/errors/serialize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/saucer/serializers/errors/serialize.hpp -------------------------------------------------------------------------------- /deps/saucer/include/saucer/serializers/glaze/glaze.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/saucer/serializers/glaze/glaze.hpp -------------------------------------------------------------------------------- /deps/saucer/include/saucer/serializers/glaze/glaze.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/saucer/serializers/glaze/glaze.inl -------------------------------------------------------------------------------- /deps/saucer/include/saucer/serializers/serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/saucer/serializers/serializer.hpp -------------------------------------------------------------------------------- /deps/saucer/include/saucer/smartview.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/saucer/smartview.hpp -------------------------------------------------------------------------------- /deps/saucer/include/saucer/smartview.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/saucer/smartview.inl -------------------------------------------------------------------------------- /deps/saucer/include/saucer/utils/future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/saucer/utils/future.hpp -------------------------------------------------------------------------------- /deps/saucer/include/saucer/utils/future.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/saucer/utils/future.inl -------------------------------------------------------------------------------- /deps/saucer/include/saucer/webview.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/saucer/webview.hpp -------------------------------------------------------------------------------- /deps/saucer/include/saucer/window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/saucer/window.hpp -------------------------------------------------------------------------------- /deps/saucer/include/tl/expected.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/include/tl/expected.hpp -------------------------------------------------------------------------------- /deps/saucer/lib/debug/cmake/fmt/fmt-config-version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/lib/debug/cmake/fmt/fmt-config-version.cmake -------------------------------------------------------------------------------- /deps/saucer/lib/debug/cmake/fmt/fmt-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/lib/debug/cmake/fmt/fmt-config.cmake -------------------------------------------------------------------------------- /deps/saucer/lib/debug/cmake/fmt/fmt-targets-debug.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/lib/debug/cmake/fmt/fmt-targets-debug.cmake -------------------------------------------------------------------------------- /deps/saucer/lib/debug/cmake/fmt/fmt-targets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/lib/debug/cmake/fmt/fmt-targets.cmake -------------------------------------------------------------------------------- /deps/saucer/lib/debug/fmtd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/lib/debug/fmtd.lib -------------------------------------------------------------------------------- /deps/saucer/lib/debug/pkgconfig/fmt.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/lib/debug/pkgconfig/fmt.pc -------------------------------------------------------------------------------- /deps/saucer/lib/debug/saucer.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/lib/debug/saucer.lib -------------------------------------------------------------------------------- /deps/saucer/lib/release/cmake/fmt/fmt-config-version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/lib/release/cmake/fmt/fmt-config-version.cmake -------------------------------------------------------------------------------- /deps/saucer/lib/release/cmake/fmt/fmt-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/lib/release/cmake/fmt/fmt-config.cmake -------------------------------------------------------------------------------- /deps/saucer/lib/release/cmake/fmt/fmt-targets-relwithdebinfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/lib/release/cmake/fmt/fmt-targets-relwithdebinfo.cmake -------------------------------------------------------------------------------- /deps/saucer/lib/release/cmake/fmt/fmt-targets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/lib/release/cmake/fmt/fmt-targets.cmake -------------------------------------------------------------------------------- /deps/saucer/lib/release/fmt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/lib/release/fmt.lib -------------------------------------------------------------------------------- /deps/saucer/lib/release/pkgconfig/fmt.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/lib/release/pkgconfig/fmt.pc -------------------------------------------------------------------------------- /deps/saucer/lib/release/saucer.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/lib/release/saucer.lib -------------------------------------------------------------------------------- /deps/saucer/share/cmake/tl-expected/tl-expected-config-version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/share/cmake/tl-expected/tl-expected-config-version.cmake -------------------------------------------------------------------------------- /deps/saucer/share/cmake/tl-expected/tl-expected-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/share/cmake/tl-expected/tl-expected-config.cmake -------------------------------------------------------------------------------- /deps/saucer/share/cmake/tl-expected/tl-expected-targets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/share/cmake/tl-expected/tl-expected-targets.cmake -------------------------------------------------------------------------------- /deps/saucer/share/glaze/glazeConfig.cmake: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/glazeTargets.cmake") -------------------------------------------------------------------------------- /deps/saucer/share/glaze/glazeConfigVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/share/glaze/glazeConfigVersion.cmake -------------------------------------------------------------------------------- /deps/saucer/share/glaze/glazeTargets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/saucer/share/glaze/glazeTargets.cmake -------------------------------------------------------------------------------- /deps/simdjson/simdjson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/simdjson/simdjson.cpp -------------------------------------------------------------------------------- /deps/simdjson/simdjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/simdjson/simdjson.h -------------------------------------------------------------------------------- /deps/webview2/include/WebView2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/webview2/include/WebView2.h -------------------------------------------------------------------------------- /deps/webview2/include/WebView2EnvironmentOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/webview2/include/WebView2EnvironmentOptions.h -------------------------------------------------------------------------------- /deps/webview2/lib/WebView2LoaderStatic.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/deps/webview2/lib/WebView2LoaderStatic.lib -------------------------------------------------------------------------------- /generate.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | git submodule update --init --recursive 3 | tools\premake5 %* vs2022 -------------------------------------------------------------------------------- /premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/premake5.lua -------------------------------------------------------------------------------- /src/client/component/ddr/env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/component/ddr/env.cpp -------------------------------------------------------------------------------- /src/client/component/ddr/patches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/component/ddr/patches.cpp -------------------------------------------------------------------------------- /src/client/component/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/component/exception.cpp -------------------------------------------------------------------------------- /src/client/component/filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/component/filesystem.cpp -------------------------------------------------------------------------------- /src/client/component/filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/component/filesystem.hpp -------------------------------------------------------------------------------- /src/client/component/gitadora/env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/component/gitadora/env.cpp -------------------------------------------------------------------------------- /src/client/component/gitadora/patches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/component/gitadora/patches.cpp -------------------------------------------------------------------------------- /src/client/component/icp_bypass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/component/icp_bypass.cpp -------------------------------------------------------------------------------- /src/client/component/iidx/analyze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/component/iidx/analyze.cpp -------------------------------------------------------------------------------- /src/client/component/iidx/analyze.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/component/iidx/analyze.hpp -------------------------------------------------------------------------------- /src/client/component/iidx/chart_modifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/component/iidx/chart_modifier.cpp -------------------------------------------------------------------------------- /src/client/component/iidx/chart_modifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/component/iidx/chart_modifier.hpp -------------------------------------------------------------------------------- /src/client/component/iidx/custom_resolution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/component/iidx/custom_resolution.cpp -------------------------------------------------------------------------------- /src/client/component/iidx/custom_resolution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/component/iidx/custom_resolution.hpp -------------------------------------------------------------------------------- /src/client/component/iidx/d3d9_proxy/device_ex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/component/iidx/d3d9_proxy/device_ex.cpp -------------------------------------------------------------------------------- /src/client/component/iidx/d3d9_proxy/device_ex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/component/iidx/d3d9_proxy/device_ex.hpp -------------------------------------------------------------------------------- /src/client/component/iidx/d3d9_proxy/interface_ex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/component/iidx/d3d9_proxy/interface_ex.cpp -------------------------------------------------------------------------------- /src/client/component/iidx/d3d9_proxy/interface_ex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/component/iidx/d3d9_proxy/interface_ex.hpp -------------------------------------------------------------------------------- /src/client/component/iidx/env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/component/iidx/env.cpp -------------------------------------------------------------------------------- /src/client/component/iidx/env.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace iidx::env 4 | { 5 | bool use_exp(); 6 | } 7 | -------------------------------------------------------------------------------- /src/client/component/iidx/external_modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/component/iidx/external_modules.cpp -------------------------------------------------------------------------------- /src/client/component/iidx/omnimix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/component/iidx/omnimix.cpp -------------------------------------------------------------------------------- /src/client/component/iidx/overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/component/iidx/overlay.cpp -------------------------------------------------------------------------------- /src/client/component/iidx/patches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/component/iidx/patches.cpp -------------------------------------------------------------------------------- /src/client/component/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/component/logger.cpp -------------------------------------------------------------------------------- /src/client/component/sdvx/env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/component/sdvx/env.cpp -------------------------------------------------------------------------------- /src/client/component/sdvx/patches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/component/sdvx/patches.cpp -------------------------------------------------------------------------------- /src/client/component/shiftjis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/component/shiftjis.cpp -------------------------------------------------------------------------------- /src/client/component/steam_proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/component/steam_proxy.cpp -------------------------------------------------------------------------------- /src/client/component/steam_proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/component/steam_proxy.hpp -------------------------------------------------------------------------------- /src/client/game/avs2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/game/avs2.hpp -------------------------------------------------------------------------------- /src/client/game/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/game/game.cpp -------------------------------------------------------------------------------- /src/client/game/game.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/game/game.hpp -------------------------------------------------------------------------------- /src/client/game/iidx/struct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/game/iidx/struct.hpp -------------------------------------------------------------------------------- /src/client/game/iidx/symbols.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/game/iidx/symbols.hpp -------------------------------------------------------------------------------- /src/client/game/struct.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | namespace game 3 | { 4 | } 5 | -------------------------------------------------------------------------------- /src/client/game/symbols.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/game/symbols.hpp -------------------------------------------------------------------------------- /src/client/launcher/launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/launcher/launcher.cpp -------------------------------------------------------------------------------- /src/client/launcher/launcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/launcher/launcher.hpp -------------------------------------------------------------------------------- /src/client/launcher/launcher_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/launcher/launcher_module.cpp -------------------------------------------------------------------------------- /src/client/launcher/launcher_module.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/launcher/launcher_module.hpp -------------------------------------------------------------------------------- /src/client/loader/component_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/loader/component_interface.hpp -------------------------------------------------------------------------------- /src/client/loader/component_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/loader/component_loader.cpp -------------------------------------------------------------------------------- /src/client/loader/component_loader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/loader/component_loader.hpp -------------------------------------------------------------------------------- /src/client/loader/loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/loader/loader.cpp -------------------------------------------------------------------------------- /src/client/loader/loader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/loader/loader.hpp -------------------------------------------------------------------------------- /src/client/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/main.cpp -------------------------------------------------------------------------------- /src/client/resource.g.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/resource.g.hpp -------------------------------------------------------------------------------- /src/client/resource.g.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/resource.g.rc -------------------------------------------------------------------------------- /src/client/resource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/resource.hpp -------------------------------------------------------------------------------- /src/client/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/resource.rc -------------------------------------------------------------------------------- /src/client/resources/all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/resources/all.hpp -------------------------------------------------------------------------------- /src/client/resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/resources/icon.ico -------------------------------------------------------------------------------- /src/client/resources/ui-dist/assets/aero-CZ6BZh4F.png.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/resources/ui-dist/assets/aero-CZ6BZh4F.png.zst -------------------------------------------------------------------------------- /src/client/resources/ui-dist/assets/ddr-BmtkgcJb.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/resources/ui-dist/assets/ddr-BmtkgcJb.webp -------------------------------------------------------------------------------- /src/client/resources/ui-dist/assets/ddr-LCq_LvSa.ico.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/resources/ui-dist/assets/ddr-LCq_LvSa.ico.zst -------------------------------------------------------------------------------- /src/client/resources/ui-dist/assets/dm_chara-Bmqo60mo.png.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/resources/ui-dist/assets/dm_chara-Bmqo60mo.png.zst -------------------------------------------------------------------------------- /src/client/resources/ui-dist/assets/gf_chara-B0QvKm_g.png.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/resources/ui-dist/assets/gf_chara-B0QvKm_g.png.zst -------------------------------------------------------------------------------- /src/client/resources/ui-dist/assets/gitadora-DFqMpK2F.jpg.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/resources/ui-dist/assets/gitadora-DFqMpK2F.jpg.zst -------------------------------------------------------------------------------- /src/client/resources/ui-dist/assets/gtdr-sRWUTLFt.ico.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/resources/ui-dist/assets/gtdr-sRWUTLFt.ico.zst -------------------------------------------------------------------------------- /src/client/resources/ui-dist/assets/howler-DR5KLX7K.js.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/resources/ui-dist/assets/howler-DR5KLX7K.js.zst -------------------------------------------------------------------------------- /src/client/resources/ui-dist/assets/iidx-CFUAx3V2.jpg.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/resources/ui-dist/assets/iidx-CFUAx3V2.jpg.zst -------------------------------------------------------------------------------- /src/client/resources/ui-dist/assets/iidx-CigaWHLQ.ico.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/resources/ui-dist/assets/iidx-CigaWHLQ.ico.zst -------------------------------------------------------------------------------- /src/client/resources/ui-dist/assets/iidx_chara-B1fwrXHd.png.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/resources/ui-dist/assets/iidx_chara-B1fwrXHd.png.zst -------------------------------------------------------------------------------- /src/client/resources/ui-dist/assets/index-BREZ-GVy.css.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/resources/ui-dist/assets/index-BREZ-GVy.css.zst -------------------------------------------------------------------------------- /src/client/resources/ui-dist/assets/index-BSXl3KHo.js.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/resources/ui-dist/assets/index-BSXl3KHo.js.zst -------------------------------------------------------------------------------- /src/client/resources/ui-dist/assets/msyhsb-teYSJU3-.woff2.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/resources/ui-dist/assets/msyhsb-teYSJU3-.woff2.zst -------------------------------------------------------------------------------- /src/client/resources/ui-dist/assets/num-DOiIrgmq.jpg.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/resources/ui-dist/assets/num-DOiIrgmq.jpg.zst -------------------------------------------------------------------------------- /src/client/resources/ui-dist/assets/num-z0VsZKpR.mp3.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/resources/ui-dist/assets/num-z0VsZKpR.mp3.zst -------------------------------------------------------------------------------- /src/client/resources/ui-dist/assets/sdvx-OL-KBV4E.jpg.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/resources/ui-dist/assets/sdvx-OL-KBV4E.jpg.zst -------------------------------------------------------------------------------- /src/client/resources/ui-dist/assets/sdvx-R2F0Wv1S.ico.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/resources/ui-dist/assets/sdvx-R2F0Wv1S.ico.zst -------------------------------------------------------------------------------- /src/client/resources/ui-dist/assets/sgm-BpMyBNft.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/resources/ui-dist/assets/sgm-BpMyBNft.woff2 -------------------------------------------------------------------------------- /src/client/resources/ui-dist/favicon.ico.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/resources/ui-dist/favicon.ico.zst -------------------------------------------------------------------------------- /src/client/resources/ui-dist/index.html.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/resources/ui-dist/index.html.zst -------------------------------------------------------------------------------- /src/client/std_include.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/std_include.cpp -------------------------------------------------------------------------------- /src/client/std_include.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/std_include.hpp -------------------------------------------------------------------------------- /src/client/steam/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/steam/interface.cpp -------------------------------------------------------------------------------- /src/client/steam/interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/steam/interface.hpp -------------------------------------------------------------------------------- /src/client/steam/steam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/steam/steam.cpp -------------------------------------------------------------------------------- /src/client/steam/steam.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/client/steam/steam.hpp -------------------------------------------------------------------------------- /src/common/exception/minidump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/common/exception/minidump.cpp -------------------------------------------------------------------------------- /src/common/exception/minidump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/common/exception/minidump.hpp -------------------------------------------------------------------------------- /src/common/utils/binary_resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/common/utils/binary_resource.cpp -------------------------------------------------------------------------------- /src/common/utils/binary_resource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/common/utils/binary_resource.hpp -------------------------------------------------------------------------------- /src/common/utils/compression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/common/utils/compression.cpp -------------------------------------------------------------------------------- /src/common/utils/compression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/common/utils/compression.hpp -------------------------------------------------------------------------------- /src/common/utils/concurrency.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/common/utils/concurrency.hpp -------------------------------------------------------------------------------- /src/common/utils/flags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/common/utils/flags.cpp -------------------------------------------------------------------------------- /src/common/utils/flags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/common/utils/flags.hpp -------------------------------------------------------------------------------- /src/common/utils/hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/common/utils/hook.cpp -------------------------------------------------------------------------------- /src/common/utils/hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/common/utils/hook.hpp -------------------------------------------------------------------------------- /src/common/utils/http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/common/utils/http.cpp -------------------------------------------------------------------------------- /src/common/utils/http.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/common/utils/http.hpp -------------------------------------------------------------------------------- /src/common/utils/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/common/utils/image.cpp -------------------------------------------------------------------------------- /src/common/utils/image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/common/utils/image.hpp -------------------------------------------------------------------------------- /src/common/utils/info_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/common/utils/info_string.cpp -------------------------------------------------------------------------------- /src/common/utils/info_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/common/utils/info_string.hpp -------------------------------------------------------------------------------- /src/common/utils/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/common/utils/io.cpp -------------------------------------------------------------------------------- /src/common/utils/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/common/utils/io.hpp -------------------------------------------------------------------------------- /src/common/utils/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/common/utils/memory.cpp -------------------------------------------------------------------------------- /src/common/utils/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/common/utils/memory.hpp -------------------------------------------------------------------------------- /src/common/utils/nt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/common/utils/nt.cpp -------------------------------------------------------------------------------- /src/common/utils/nt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/common/utils/nt.hpp -------------------------------------------------------------------------------- /src/common/utils/signature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/common/utils/signature.cpp -------------------------------------------------------------------------------- /src/common/utils/signature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/common/utils/signature.hpp -------------------------------------------------------------------------------- /src/common/utils/smbios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/common/utils/smbios.cpp -------------------------------------------------------------------------------- /src/common/utils/smbios.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/common/utils/smbios.hpp -------------------------------------------------------------------------------- /src/common/utils/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/common/utils/string.cpp -------------------------------------------------------------------------------- /src/common/utils/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/common/utils/string.hpp -------------------------------------------------------------------------------- /src/common/utils/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/common/utils/thread.cpp -------------------------------------------------------------------------------- /src/common/utils/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/common/utils/thread.hpp -------------------------------------------------------------------------------- /src/runner/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/runner/debugger.cpp -------------------------------------------------------------------------------- /src/runner/debugger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/runner/debugger.hpp -------------------------------------------------------------------------------- /src/runner/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/runner/resource.rc -------------------------------------------------------------------------------- /src/runner/runner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/src/runner/runner.cpp -------------------------------------------------------------------------------- /tools/download_2dxgsm.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/tools/download_2dxgsm.ps1 -------------------------------------------------------------------------------- /tools/premake5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laochan-eacnet/client/HEAD/tools/premake5.exe --------------------------------------------------------------------------------