├── .gitignore ├── API ├── CURL │ ├── include │ │ ├── Makefile.am │ │ ├── README.md │ │ └── curl │ │ │ ├── Makefile.am │ │ │ ├── curl.h │ │ │ ├── curlver.h │ │ │ ├── easy.h │ │ │ ├── header.h │ │ │ ├── mprintf.h │ │ │ ├── multi.h │ │ │ ├── options.h │ │ │ ├── stdcheaders.h │ │ │ ├── system.h │ │ │ ├── typecheck-gcc.h │ │ │ ├── urlapi.h │ │ │ └── websockets.h │ └── lib │ │ ├── libcurl.dll │ │ ├── libcurl_imp.exp │ │ └── libcurl_imp.lib ├── ClipboardXX │ ├── README.md │ └── include │ │ ├── clipboardxx.hpp │ │ └── detail │ │ ├── exception.hpp │ │ ├── interface.hpp │ │ ├── linux.hpp │ │ ├── linux │ │ ├── provider.hpp │ │ ├── x11_event_handler.hpp │ │ ├── x11_provider.hpp │ │ └── xcb │ │ │ ├── xcb.hpp │ │ │ └── xcb_event.hpp │ │ └── windows.hpp ├── GLEW │ ├── glew32.lib │ ├── glew32s.lib │ └── include │ │ └── GL │ │ ├── eglew.h │ │ ├── glew.h │ │ ├── glxew.h │ │ └── wglew.h ├── GLFW │ ├── glfw3.dll │ ├── glfw3.lib │ ├── glfw3_mt.lib │ ├── glfw3dll.lib │ └── include │ │ └── GLFW │ │ ├── glfw3.h │ │ └── glfw3native.h ├── JSON │ ├── include │ │ └── nlohmann │ │ │ ├── adl_serializer.hpp │ │ │ ├── byte_container_with_subtype.hpp │ │ │ ├── detail │ │ │ ├── abi_macros.hpp │ │ │ ├── conversions │ │ │ │ ├── from_json.hpp │ │ │ │ ├── to_chars.hpp │ │ │ │ └── to_json.hpp │ │ │ ├── exceptions.hpp │ │ │ ├── hash.hpp │ │ │ ├── input │ │ │ │ ├── binary_reader.hpp │ │ │ │ ├── input_adapters.hpp │ │ │ │ ├── json_sax.hpp │ │ │ │ ├── lexer.hpp │ │ │ │ ├── parser.hpp │ │ │ │ └── position_t.hpp │ │ │ ├── iterators │ │ │ │ ├── internal_iterator.hpp │ │ │ │ ├── iter_impl.hpp │ │ │ │ ├── iteration_proxy.hpp │ │ │ │ ├── iterator_traits.hpp │ │ │ │ ├── json_reverse_iterator.hpp │ │ │ │ └── primitive_iterator.hpp │ │ │ ├── json_custom_base_class.hpp │ │ │ ├── json_pointer.hpp │ │ │ ├── json_ref.hpp │ │ │ ├── macro_scope.hpp │ │ │ ├── macro_unscope.hpp │ │ │ ├── meta │ │ │ │ ├── call_std │ │ │ │ │ ├── begin.hpp │ │ │ │ │ └── end.hpp │ │ │ │ ├── cpp_future.hpp │ │ │ │ ├── detected.hpp │ │ │ │ ├── identity_tag.hpp │ │ │ │ ├── is_sax.hpp │ │ │ │ ├── std_fs.hpp │ │ │ │ ├── type_traits.hpp │ │ │ │ └── void_t.hpp │ │ │ ├── output │ │ │ │ ├── binary_writer.hpp │ │ │ │ ├── output_adapters.hpp │ │ │ │ └── serializer.hpp │ │ │ ├── string_concat.hpp │ │ │ ├── string_escape.hpp │ │ │ └── value_t.hpp │ │ │ ├── json.hpp │ │ │ ├── json_fwd.hpp │ │ │ ├── ordered_map.hpp │ │ │ └── thirdparty │ │ │ └── hedley │ │ │ ├── hedley.hpp │ │ │ └── hedley_undef.hpp │ └── null.txt ├── README.md ├── lz4 │ ├── include │ │ ├── lz4.h │ │ ├── lz4frame.h │ │ └── lz4hc.h │ └── static │ │ └── lz4_static.lib └── stb_image │ └── stb_image.h ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── HalfPeopleStudioImGuiEditor.sln ├── HalfPeopleStudioImGuiEditor ├── ComponentTreePanel.h ├── ControlPanel.h ├── DefaultWidget.cpp ├── DefaultWidget.h ├── DeleteWidgetPanel.h ├── DependentFile │ ├── API │ │ ├── GLFW │ │ │ ├── glfw3.dll │ │ │ ├── glfw3.lib │ │ │ ├── glfw3_mt.lib │ │ │ ├── glfw3dll.lib │ │ │ └── include │ │ │ │ └── GLFW │ │ │ │ ├── glfw3.h │ │ │ │ └── glfw3native.h │ │ ├── ImGui │ │ │ ├── LICENSE.txt │ │ │ ├── a.txt │ │ │ ├── backends │ │ │ │ ├── imgui_impl_allegro5.cpp │ │ │ │ ├── imgui_impl_allegro5.h │ │ │ │ ├── imgui_impl_android.cpp │ │ │ │ ├── imgui_impl_android.h │ │ │ │ ├── imgui_impl_dx10.cpp │ │ │ │ ├── imgui_impl_dx10.h │ │ │ │ ├── imgui_impl_dx11.cpp │ │ │ │ ├── imgui_impl_dx11.h │ │ │ │ ├── imgui_impl_dx12.cpp │ │ │ │ ├── imgui_impl_dx12.h │ │ │ │ ├── imgui_impl_dx9.cpp │ │ │ │ ├── imgui_impl_dx9.h │ │ │ │ ├── imgui_impl_glfw.cpp │ │ │ │ ├── imgui_impl_glfw.h │ │ │ │ ├── imgui_impl_glut.cpp │ │ │ │ ├── imgui_impl_glut.h │ │ │ │ ├── imgui_impl_metal.h │ │ │ │ ├── imgui_impl_metal.mm │ │ │ │ ├── imgui_impl_opengl2.cpp │ │ │ │ ├── imgui_impl_opengl2.h │ │ │ │ ├── imgui_impl_opengl3.cpp │ │ │ │ ├── imgui_impl_opengl3.h │ │ │ │ ├── imgui_impl_opengl3_loader.h │ │ │ │ ├── imgui_impl_osx.h │ │ │ │ ├── imgui_impl_osx.mm │ │ │ │ ├── imgui_impl_sdl.cpp │ │ │ │ ├── imgui_impl_sdl.h │ │ │ │ ├── imgui_impl_sdl2.cpp │ │ │ │ ├── imgui_impl_sdl2.h │ │ │ │ ├── imgui_impl_sdl3.cpp │ │ │ │ ├── imgui_impl_sdl3.h │ │ │ │ ├── imgui_impl_sdlrenderer.cpp │ │ │ │ ├── imgui_impl_sdlrenderer.h │ │ │ │ ├── imgui_impl_sdlrenderer2.cpp │ │ │ │ ├── imgui_impl_sdlrenderer2.h │ │ │ │ ├── imgui_impl_sdlrenderer3.cpp │ │ │ │ ├── imgui_impl_sdlrenderer3.h │ │ │ │ ├── imgui_impl_vulkan.cpp │ │ │ │ ├── imgui_impl_vulkan.h │ │ │ │ ├── imgui_impl_wgpu.cpp │ │ │ │ ├── imgui_impl_wgpu.h │ │ │ │ ├── imgui_impl_win32.cpp │ │ │ │ ├── imgui_impl_win32.h │ │ │ │ └── vulkan │ │ │ │ │ ├── generate_spv.sh │ │ │ │ │ ├── glsl_shader.frag │ │ │ │ │ └── glsl_shader.vert │ │ │ ├── docs │ │ │ │ ├── BACKENDS.md │ │ │ │ ├── CHANGELOG.txt │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── EXAMPLES.md │ │ │ │ ├── FAQ.md │ │ │ │ ├── FONTS.md │ │ │ │ ├── README.md │ │ │ │ └── TODO.txt │ │ │ ├── imconfig.h │ │ │ ├── imgui.cpp │ │ │ ├── imgui.h │ │ │ ├── imgui_demo.cpp │ │ │ ├── imgui_draw.cpp │ │ │ ├── imgui_internal.h │ │ │ ├── imgui_tables.cpp │ │ │ ├── imgui_widgets.cpp │ │ │ ├── imstb_rectpack.h │ │ │ ├── imstb_textedit.h │ │ │ ├── imstb_truetype.h │ │ │ └── misc │ │ │ │ ├── README.txt │ │ │ │ ├── cpp │ │ │ │ ├── README.txt │ │ │ │ ├── imgui_stdlib.cpp │ │ │ │ └── imgui_stdlib.h │ │ │ │ ├── debuggers │ │ │ │ ├── README.txt │ │ │ │ ├── imgui.gdb │ │ │ │ ├── imgui.natstepfilter │ │ │ │ └── imgui.natvis │ │ │ │ ├── fonts │ │ │ │ ├── Cousine-Regular.ttf │ │ │ │ ├── DroidSans.ttf │ │ │ │ ├── Karla-Regular.ttf │ │ │ │ ├── ProggyClean.ttf │ │ │ │ ├── ProggyTiny.ttf │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ └── binary_to_compressed_c.cpp │ │ │ │ ├── freetype │ │ │ │ ├── README.md │ │ │ │ ├── imgui_freetype.cpp │ │ │ │ └── imgui_freetype.h │ │ │ │ └── single_file │ │ │ │ └── imgui_single_file.h │ │ └── README.md │ ├── Bin │ │ ├── glew32.dll │ │ └── glfw3.dll │ ├── DFL.HLogo │ ├── HImGuiEditor Struct - Copy.png │ ├── HImGuiEditor Struct.png │ ├── Image │ │ ├── 1EditViewBg.jpg │ │ ├── Delete.png │ │ ├── Discord.png │ │ ├── EditViewBg.jpg │ │ ├── Mouse.png │ │ ├── Move.png │ │ ├── Plugin.png │ │ ├── Save.png │ │ └── Setting.png │ ├── configuration file │ │ ├── Preferences.json │ │ ├── RecentlyOpenedPorject.json │ │ ├── Style │ │ │ ├── ( f22 ) ByHalfPeopleStudio.json │ │ │ ├── ( DeepSea )ByHalfPeopleStudio.json │ │ │ ├── ( default )ByHalfPeopleStudio.json │ │ │ └── UseStyle.json │ │ ├── TranslateCache.json │ │ └── UseStyle.json │ ├── glew32.dll │ ├── glfw3.dll │ └── kaiu.ttf ├── DetailsPanel.h ├── ExportCode.h ├── ExportCodePanel.h ├── File.h ├── FileToolCallBack.h ├── FlagsList.h ├── HAnimationSequencerPanel.cpp ├── HAnimationSequencerPanel.h ├── HArrow │ └── HArrow.h ├── HFileBrowser.h ├── HFont.h ├── HImGuiStyle.h ├── HImGuiWidgetItem.h ├── HImGuiWindowDetailsPanel.h ├── HImGuiWindows.h ├── HTranslate.h ├── HValue.h ├── HWidget.h ├── HWindows.cpp ├── HWindows.dll ├── HWindows.h ├── H_stb.h ├── HalfPeopleStudioImGuiEditor.vcxproj ├── HalfPeopleStudioImGuiEditor.vcxproj.filters ├── HalfPeopleStudioImGuiEditor.vcxproj.user ├── ImFileDialog │ ├── ImFileDialog.cpp │ ├── ImFileDialog.h │ ├── README.md │ └── example.cpp ├── ImFileDialogTool.h ├── ImGui │ ├── LICENSE.txt │ ├── backends │ │ ├── imgui_impl_allegro5.cpp │ │ ├── imgui_impl_allegro5.h │ │ ├── imgui_impl_android.cpp │ │ ├── imgui_impl_android.h │ │ ├── imgui_impl_dx10.cpp │ │ ├── imgui_impl_dx10.h │ │ ├── imgui_impl_dx11.cpp │ │ ├── imgui_impl_dx11.h │ │ ├── imgui_impl_dx12.cpp │ │ ├── imgui_impl_dx12.h │ │ ├── imgui_impl_dx9.cpp │ │ ├── imgui_impl_dx9.h │ │ ├── imgui_impl_glfw.cpp │ │ ├── imgui_impl_glfw.h │ │ ├── imgui_impl_glut.cpp │ │ ├── imgui_impl_glut.h │ │ ├── imgui_impl_metal.h │ │ ├── imgui_impl_metal.mm │ │ ├── imgui_impl_opengl2.cpp │ │ ├── imgui_impl_opengl2.h │ │ ├── imgui_impl_opengl3.cpp │ │ ├── imgui_impl_opengl3.h │ │ ├── imgui_impl_opengl3_loader.h │ │ ├── imgui_impl_osx.h │ │ ├── imgui_impl_osx.mm │ │ ├── imgui_impl_sdl.cpp │ │ ├── imgui_impl_sdl.h │ │ ├── imgui_impl_sdl2.cpp │ │ ├── imgui_impl_sdl2.h │ │ ├── imgui_impl_sdl3.cpp │ │ ├── imgui_impl_sdl3.h │ │ ├── imgui_impl_sdlrenderer.cpp │ │ ├── imgui_impl_sdlrenderer.h │ │ ├── imgui_impl_sdlrenderer2.cpp │ │ ├── imgui_impl_sdlrenderer2.h │ │ ├── imgui_impl_sdlrenderer3.cpp │ │ ├── imgui_impl_sdlrenderer3.h │ │ ├── imgui_impl_vulkan.cpp │ │ ├── imgui_impl_vulkan.h │ │ ├── imgui_impl_wgpu.cpp │ │ ├── imgui_impl_wgpu.h │ │ ├── imgui_impl_win32.cpp │ │ ├── imgui_impl_win32.h │ │ └── vulkan │ │ │ ├── generate_spv.sh │ │ │ ├── glsl_shader.frag │ │ │ └── glsl_shader.vert │ ├── docs │ │ ├── BACKENDS.md │ │ ├── CHANGELOG.txt │ │ ├── CONTRIBUTING.md │ │ ├── EXAMPLES.md │ │ ├── FAQ.md │ │ ├── FONTS.md │ │ ├── README.md │ │ └── TODO.txt │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_internal.h │ ├── imgui_tables.cpp │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ ├── imstb_truetype.h │ └── misc │ │ ├── README.txt │ │ ├── cpp │ │ ├── README.txt │ │ ├── imgui_stdlib.cpp │ │ └── imgui_stdlib.h │ │ ├── debuggers │ │ ├── README.txt │ │ ├── imgui.gdb │ │ ├── imgui.natstepfilter │ │ └── imgui.natvis │ │ ├── fonts │ │ ├── Cousine-Regular.ttf │ │ ├── DroidSans.ttf │ │ ├── Karla-Regular.ttf │ │ ├── ProggyClean.ttf │ │ ├── ProggyTiny.ttf │ │ ├── Roboto-Medium.ttf │ │ └── binary_to_compressed_c.cpp │ │ ├── freetype │ │ ├── README.md │ │ ├── imgui_freetype.cpp │ │ └── imgui_freetype.h │ │ └── single_file │ │ └── imgui_single_file.h ├── ImGuiColorTextEdit │ ├── TextEditor.cpp │ └── TextEditor.h ├── ImGuiNotify.h ├── ImNeoSequenc │ ├── LICENSE │ ├── README.md │ ├── imgui_neo_internal.cpp │ ├── imgui_neo_internal.h │ ├── imgui_neo_sequencer.cpp │ ├── imgui_neo_sequencer.h │ └── screenshots │ │ └── screenshot.png ├── KeyAndAutoSave.h ├── MainMenuBar.h ├── MainMenuBarVar.h ├── PagingPanel.h ├── Plugin.h ├── Plugin │ ├── Plugin-Example │ │ └── HImGuiEditorPlugin │ │ │ ├── API │ │ │ ├── CURL │ │ │ │ ├── include │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── README.md │ │ │ │ │ └── curl │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── curl.h │ │ │ │ │ │ ├── curlver.h │ │ │ │ │ │ ├── easy.h │ │ │ │ │ │ ├── header.h │ │ │ │ │ │ ├── mprintf.h │ │ │ │ │ │ ├── multi.h │ │ │ │ │ │ ├── options.h │ │ │ │ │ │ ├── stdcheaders.h │ │ │ │ │ │ ├── system.h │ │ │ │ │ │ ├── typecheck-gcc.h │ │ │ │ │ │ ├── urlapi.h │ │ │ │ │ │ └── websockets.h │ │ │ │ └── lib │ │ │ │ │ ├── libcurl.dll │ │ │ │ │ ├── libcurl_imp.exp │ │ │ │ │ └── libcurl_imp.lib │ │ │ ├── JSON │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CITATION.cff │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ChangeLog.md │ │ │ │ ├── LICENSE.MIT │ │ │ │ ├── LICENSES │ │ │ │ │ ├── Apache-2.0.txt │ │ │ │ │ ├── BSD-3-Clause.txt │ │ │ │ │ ├── GPL-3.0-only.txt │ │ │ │ │ └── MIT.txt │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── WORKSPACE.bazel │ │ │ │ ├── a.txt │ │ │ │ ├── cmake │ │ │ │ │ ├── ci.cmake │ │ │ │ │ ├── config.cmake.in │ │ │ │ │ ├── download_test_data.cmake │ │ │ │ │ ├── nlohmann_jsonConfigVersion.cmake.in │ │ │ │ │ ├── pkg-config.pc.in │ │ │ │ │ ├── scripts │ │ │ │ │ │ └── gen_bazel_build_file.cmake │ │ │ │ │ └── test.cmake │ │ │ │ ├── include │ │ │ │ │ └── nlohmann │ │ │ │ │ │ ├── adl_serializer.hpp │ │ │ │ │ │ ├── byte_container_with_subtype.hpp │ │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── abi_macros.hpp │ │ │ │ │ │ ├── conversions │ │ │ │ │ │ │ ├── from_json.hpp │ │ │ │ │ │ │ ├── to_chars.hpp │ │ │ │ │ │ │ └── to_json.hpp │ │ │ │ │ │ ├── exceptions.hpp │ │ │ │ │ │ ├── hash.hpp │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ ├── binary_reader.hpp │ │ │ │ │ │ │ ├── input_adapters.hpp │ │ │ │ │ │ │ ├── json_sax.hpp │ │ │ │ │ │ │ ├── lexer.hpp │ │ │ │ │ │ │ ├── parser.hpp │ │ │ │ │ │ │ └── position_t.hpp │ │ │ │ │ │ ├── iterators │ │ │ │ │ │ │ ├── internal_iterator.hpp │ │ │ │ │ │ │ ├── iter_impl.hpp │ │ │ │ │ │ │ ├── iteration_proxy.hpp │ │ │ │ │ │ │ ├── iterator_traits.hpp │ │ │ │ │ │ │ ├── json_reverse_iterator.hpp │ │ │ │ │ │ │ └── primitive_iterator.hpp │ │ │ │ │ │ ├── json_custom_base_class.hpp │ │ │ │ │ │ ├── json_pointer.hpp │ │ │ │ │ │ ├── json_ref.hpp │ │ │ │ │ │ ├── macro_scope.hpp │ │ │ │ │ │ ├── macro_unscope.hpp │ │ │ │ │ │ ├── meta │ │ │ │ │ │ │ ├── call_std │ │ │ │ │ │ │ │ ├── begin.hpp │ │ │ │ │ │ │ │ └── end.hpp │ │ │ │ │ │ │ ├── cpp_future.hpp │ │ │ │ │ │ │ ├── detected.hpp │ │ │ │ │ │ │ ├── identity_tag.hpp │ │ │ │ │ │ │ ├── is_sax.hpp │ │ │ │ │ │ │ ├── std_fs.hpp │ │ │ │ │ │ │ ├── type_traits.hpp │ │ │ │ │ │ │ └── void_t.hpp │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ ├── binary_writer.hpp │ │ │ │ │ │ │ ├── output_adapters.hpp │ │ │ │ │ │ │ └── serializer.hpp │ │ │ │ │ │ ├── string_concat.hpp │ │ │ │ │ │ ├── string_escape.hpp │ │ │ │ │ │ └── value_t.hpp │ │ │ │ │ │ ├── json.hpp │ │ │ │ │ │ ├── json_fwd.hpp │ │ │ │ │ │ ├── ordered_map.hpp │ │ │ │ │ │ └── thirdparty │ │ │ │ │ │ └── hedley │ │ │ │ │ │ ├── hedley.hpp │ │ │ │ │ │ └── hedley_undef.hpp │ │ │ │ ├── meson.build │ │ │ │ ├── nlohmann_json.natvis │ │ │ │ ├── single_include │ │ │ │ │ └── nlohmann │ │ │ │ │ │ ├── json.hpp │ │ │ │ │ │ └── json_fwd.hpp │ │ │ │ ├── tools │ │ │ │ │ ├── amalgamate │ │ │ │ │ │ ├── CHANGES.md │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── amalgamate.py │ │ │ │ │ │ ├── config_json.json │ │ │ │ │ │ └── config_json_fwd.json │ │ │ │ │ ├── gdb_pretty_printer │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── nlohmann-json.py │ │ │ │ │ ├── generate_natvis │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── generate_natvis.py │ │ │ │ │ │ └── nlohmann_json.natvis.j2 │ │ │ │ │ ├── macro_builder │ │ │ │ │ │ └── main.cpp │ │ │ │ │ └── serve_header │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── demo.png │ │ │ │ │ │ ├── requirements.txt │ │ │ │ │ │ ├── serve_header.py │ │ │ │ │ │ └── serve_header.yml.example │ │ │ │ └── wsjcpp.yml │ │ │ └── a.txt │ │ │ ├── HImGuiEditorPlugin.sln │ │ │ ├── HImGuiEditorPlugin │ │ │ ├── HArrow │ │ │ │ └── HArrow.h │ │ │ ├── HImGuiEditorPlugin.vcxproj │ │ │ ├── HImGuiEditorPlugin.vcxproj.filters │ │ │ ├── HImGuiEditorPlugin.vcxproj.user │ │ │ ├── HPlugin.h │ │ │ ├── HTranslate.h │ │ │ ├── HValue.h │ │ │ ├── HWidget.h │ │ │ ├── ImGui │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── a.txt │ │ │ │ ├── backends │ │ │ │ │ ├── imgui_impl_allegro5.cpp │ │ │ │ │ ├── imgui_impl_allegro5.h │ │ │ │ │ ├── imgui_impl_android.cpp │ │ │ │ │ ├── imgui_impl_android.h │ │ │ │ │ ├── imgui_impl_dx10.cpp │ │ │ │ │ ├── imgui_impl_dx10.h │ │ │ │ │ ├── imgui_impl_dx11.cpp │ │ │ │ │ ├── imgui_impl_dx11.h │ │ │ │ │ ├── imgui_impl_dx12.cpp │ │ │ │ │ ├── imgui_impl_dx12.h │ │ │ │ │ ├── imgui_impl_dx9.cpp │ │ │ │ │ ├── imgui_impl_dx9.h │ │ │ │ │ ├── imgui_impl_glfw.cpp │ │ │ │ │ ├── imgui_impl_glfw.h │ │ │ │ │ ├── imgui_impl_glut.cpp │ │ │ │ │ ├── imgui_impl_glut.h │ │ │ │ │ ├── imgui_impl_metal.h │ │ │ │ │ ├── imgui_impl_metal.mm │ │ │ │ │ ├── imgui_impl_opengl2.cpp │ │ │ │ │ ├── imgui_impl_opengl2.h │ │ │ │ │ ├── imgui_impl_opengl3.cpp │ │ │ │ │ ├── imgui_impl_opengl3.h │ │ │ │ │ ├── imgui_impl_opengl3_loader.h │ │ │ │ │ ├── imgui_impl_osx.h │ │ │ │ │ ├── imgui_impl_osx.mm │ │ │ │ │ ├── imgui_impl_sdl.cpp │ │ │ │ │ ├── imgui_impl_sdl.h │ │ │ │ │ ├── imgui_impl_sdl2.cpp │ │ │ │ │ ├── imgui_impl_sdl2.h │ │ │ │ │ ├── imgui_impl_sdl3.cpp │ │ │ │ │ ├── imgui_impl_sdl3.h │ │ │ │ │ ├── imgui_impl_sdlrenderer.cpp │ │ │ │ │ ├── imgui_impl_sdlrenderer.h │ │ │ │ │ ├── imgui_impl_sdlrenderer2.cpp │ │ │ │ │ ├── imgui_impl_sdlrenderer2.h │ │ │ │ │ ├── imgui_impl_sdlrenderer3.cpp │ │ │ │ │ ├── imgui_impl_sdlrenderer3.h │ │ │ │ │ ├── imgui_impl_vulkan.cpp │ │ │ │ │ ├── imgui_impl_vulkan.h │ │ │ │ │ ├── imgui_impl_wgpu.cpp │ │ │ │ │ ├── imgui_impl_wgpu.h │ │ │ │ │ ├── imgui_impl_win32.cpp │ │ │ │ │ ├── imgui_impl_win32.h │ │ │ │ │ └── vulkan │ │ │ │ │ │ ├── generate_spv.sh │ │ │ │ │ │ ├── glsl_shader.frag │ │ │ │ │ │ └── glsl_shader.vert │ │ │ │ ├── docs │ │ │ │ │ ├── BACKENDS.md │ │ │ │ │ ├── CHANGELOG.txt │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── EXAMPLES.md │ │ │ │ │ ├── FAQ.md │ │ │ │ │ ├── FONTS.md │ │ │ │ │ ├── README.md │ │ │ │ │ └── TODO.txt │ │ │ │ ├── imconfig.h │ │ │ │ ├── imgui.cpp │ │ │ │ ├── imgui.h │ │ │ │ ├── imgui_demo.cpp │ │ │ │ ├── imgui_draw.cpp │ │ │ │ ├── imgui_internal.h │ │ │ │ ├── imgui_tables.cpp │ │ │ │ ├── imgui_widgets.cpp │ │ │ │ ├── imstb_rectpack.h │ │ │ │ ├── imstb_textedit.h │ │ │ │ ├── imstb_truetype.h │ │ │ │ └── misc │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── cpp │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── imgui_stdlib.cpp │ │ │ │ │ └── imgui_stdlib.h │ │ │ │ │ ├── debuggers │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── imgui.gdb │ │ │ │ │ ├── imgui.natstepfilter │ │ │ │ │ └── imgui.natvis │ │ │ │ │ ├── fonts │ │ │ │ │ ├── Cousine-Regular.ttf │ │ │ │ │ ├── DroidSans.ttf │ │ │ │ │ ├── Karla-Regular.ttf │ │ │ │ │ ├── ProggyClean.ttf │ │ │ │ │ ├── ProggyTiny.ttf │ │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ │ └── binary_to_compressed_c.cpp │ │ │ │ │ ├── freetype │ │ │ │ │ ├── README.md │ │ │ │ │ ├── imgui_freetype.cpp │ │ │ │ │ └── imgui_freetype.h │ │ │ │ │ └── single_file │ │ │ │ │ └── imgui_single_file.h │ │ │ ├── ImGuiTextEdit │ │ │ │ └── ImGuiColorTextEdit-master │ │ │ │ │ ├── CONTRIBUTING │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── TextEditor.cpp │ │ │ │ │ └── TextEditor.h │ │ │ ├── ImNeoSequenc │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── imgui_neo_sequencer.h │ │ │ │ └── screenshots │ │ │ │ │ └── screenshot.png │ │ │ ├── a.txe │ │ │ ├── dllmain.cpp │ │ │ ├── framework.h │ │ │ ├── imgui_neo_sequencer.cpp │ │ │ ├── pch.cpp │ │ │ └── pch.h │ │ │ ├── a.txt │ │ │ └── x64 │ │ │ └── Release │ │ │ ├── HImGuiEditorPlugin.exp │ │ │ ├── HImGuiEditorPlugin.lib │ │ │ └── HImGuiEditorPlugin.pdb │ └── Widget │ │ └── HToggleButton │ │ ├── Content │ │ └── ImGuiColorTextEdit-master │ │ │ ├── CONTRIBUTING │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── TextEditor.cpp │ │ │ └── TextEditor.h │ │ ├── HImGuiEditorPlugin.dll │ │ ├── PluginImage.png │ │ └── README.md ├── PluginPanel.h ├── Porject.h ├── PorjectSettingPanel.h ├── README.md ├── SettingPanel.h ├── SplashScreenPanel.h ├── imgui.ini ├── libcurl.dll └── main.cpp ├── LICENSE ├── README.md └── x64 └── Release ├── Button.dll ├── Button.pdb ├── DependentFile ├── API │ ├── GLFW │ │ ├── glfw3.dll │ │ ├── glfw3.lib │ │ ├── glfw3_mt.lib │ │ ├── glfw3dll.lib │ │ └── include │ │ │ └── GLFW │ │ │ ├── glfw3.h │ │ │ └── glfw3native.h │ └── ImGui │ │ ├── LICENSE.txt │ │ ├── a │ │ ├── backends │ │ ├── imgui_impl_allegro5.cpp │ │ ├── imgui_impl_allegro5.h │ │ ├── imgui_impl_android.cpp │ │ ├── imgui_impl_android.h │ │ ├── imgui_impl_dx10.cpp │ │ ├── imgui_impl_dx10.h │ │ ├── imgui_impl_dx11.cpp │ │ ├── imgui_impl_dx11.h │ │ ├── imgui_impl_dx12.cpp │ │ ├── imgui_impl_dx12.h │ │ ├── imgui_impl_dx9.cpp │ │ ├── imgui_impl_dx9.h │ │ ├── imgui_impl_glfw.cpp │ │ ├── imgui_impl_glfw.h │ │ ├── imgui_impl_glut.cpp │ │ ├── imgui_impl_glut.h │ │ ├── imgui_impl_metal.h │ │ ├── imgui_impl_metal.mm │ │ ├── imgui_impl_opengl2.cpp │ │ ├── imgui_impl_opengl2.h │ │ ├── imgui_impl_opengl3.cpp │ │ ├── imgui_impl_opengl3.h │ │ ├── imgui_impl_opengl3_loader.h │ │ ├── imgui_impl_osx.h │ │ ├── imgui_impl_osx.mm │ │ ├── imgui_impl_sdl.cpp │ │ ├── imgui_impl_sdl.h │ │ ├── imgui_impl_sdlrenderer.cpp │ │ ├── imgui_impl_sdlrenderer.h │ │ ├── imgui_impl_vulkan.cpp │ │ ├── imgui_impl_vulkan.h │ │ ├── imgui_impl_wgpu.cpp │ │ ├── imgui_impl_wgpu.h │ │ ├── imgui_impl_win32.cpp │ │ ├── imgui_impl_win32.h │ │ └── vulkan │ │ │ ├── generate_spv.sh │ │ │ ├── glsl_shader.frag │ │ │ └── glsl_shader.vert │ │ ├── imconfig.h │ │ ├── imgui.cpp │ │ ├── imgui.h │ │ ├── imgui_demo.cpp │ │ ├── imgui_draw.cpp │ │ ├── imgui_internal.h │ │ ├── imgui_tables.cpp │ │ ├── imgui_widgets.cpp │ │ ├── imstb_rectpack.h │ │ ├── imstb_textedit.h │ │ └── imstb_truetype.h ├── DFL.HLogo ├── HImGuiEditor Struct - Copy.png ├── HImGuiEditor Struct.png ├── Image │ ├── 1EditViewBg.jpg │ ├── Delete.png │ ├── Discord.png │ ├── EditViewBg.jpg │ ├── Mouse.png │ ├── Move.png │ ├── Plugin.png │ ├── Save.png │ └── Setting.png ├── configuration file │ ├── Preferences.json │ ├── Style │ │ ├── ( f22 ) ByHalfPeopleStudio.json │ │ ├── ( DeepSea )ByHalfPeopleStudio.json │ │ ├── ( default )ByHalfPeopleStudio.json │ │ ├── ( f22 ) ByHalfPeopleStudio.json │ │ └── UseStyle.json │ └── UseStyle.json ├── glew32.dll ├── glfw3.dll └── kaiu.ttf ├── HWindows.dll ├── HalfPeopleStudioImGuiEditor.exe ├── HalfPeopleStudioImGuiEditor.pdb ├── Plugin └── Widget │ └── ToggleButton │ ├── Content │ └── ImGuiColorTextEdit-master │ │ ├── CONTRIBUTING │ │ ├── LICENSE │ │ ├── README.md │ │ ├── TextEditor.cpp │ │ └── TextEditor.h │ ├── HImGuiEditorPlugin.dll │ └── PluginImage.png ├── imgui.ini └── libcurl.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/.gitignore -------------------------------------------------------------------------------- /API/CURL/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/CURL/include/Makefile.am -------------------------------------------------------------------------------- /API/CURL/include/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/CURL/include/README.md -------------------------------------------------------------------------------- /API/CURL/include/curl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/CURL/include/curl/Makefile.am -------------------------------------------------------------------------------- /API/CURL/include/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/CURL/include/curl/curl.h -------------------------------------------------------------------------------- /API/CURL/include/curl/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/CURL/include/curl/curlver.h -------------------------------------------------------------------------------- /API/CURL/include/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/CURL/include/curl/easy.h -------------------------------------------------------------------------------- /API/CURL/include/curl/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/CURL/include/curl/header.h -------------------------------------------------------------------------------- /API/CURL/include/curl/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/CURL/include/curl/mprintf.h -------------------------------------------------------------------------------- /API/CURL/include/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/CURL/include/curl/multi.h -------------------------------------------------------------------------------- /API/CURL/include/curl/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/CURL/include/curl/options.h -------------------------------------------------------------------------------- /API/CURL/include/curl/stdcheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/CURL/include/curl/stdcheaders.h -------------------------------------------------------------------------------- /API/CURL/include/curl/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/CURL/include/curl/system.h -------------------------------------------------------------------------------- /API/CURL/include/curl/typecheck-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/CURL/include/curl/typecheck-gcc.h -------------------------------------------------------------------------------- /API/CURL/include/curl/urlapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/CURL/include/curl/urlapi.h -------------------------------------------------------------------------------- /API/CURL/include/curl/websockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/CURL/include/curl/websockets.h -------------------------------------------------------------------------------- /API/CURL/lib/libcurl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/CURL/lib/libcurl.dll -------------------------------------------------------------------------------- /API/CURL/lib/libcurl_imp.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/CURL/lib/libcurl_imp.exp -------------------------------------------------------------------------------- /API/CURL/lib/libcurl_imp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/CURL/lib/libcurl_imp.lib -------------------------------------------------------------------------------- /API/ClipboardXX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/ClipboardXX/README.md -------------------------------------------------------------------------------- /API/ClipboardXX/include/clipboardxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/ClipboardXX/include/clipboardxx.hpp -------------------------------------------------------------------------------- /API/ClipboardXX/include/detail/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/ClipboardXX/include/detail/exception.hpp -------------------------------------------------------------------------------- /API/ClipboardXX/include/detail/interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/ClipboardXX/include/detail/interface.hpp -------------------------------------------------------------------------------- /API/ClipboardXX/include/detail/linux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/ClipboardXX/include/detail/linux.hpp -------------------------------------------------------------------------------- /API/ClipboardXX/include/detail/linux/provider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/ClipboardXX/include/detail/linux/provider.hpp -------------------------------------------------------------------------------- /API/ClipboardXX/include/detail/linux/x11_event_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/ClipboardXX/include/detail/linux/x11_event_handler.hpp -------------------------------------------------------------------------------- /API/ClipboardXX/include/detail/linux/x11_provider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/ClipboardXX/include/detail/linux/x11_provider.hpp -------------------------------------------------------------------------------- /API/ClipboardXX/include/detail/linux/xcb/xcb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/ClipboardXX/include/detail/linux/xcb/xcb.hpp -------------------------------------------------------------------------------- /API/ClipboardXX/include/detail/linux/xcb/xcb_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/ClipboardXX/include/detail/linux/xcb/xcb_event.hpp -------------------------------------------------------------------------------- /API/ClipboardXX/include/detail/windows.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/ClipboardXX/include/detail/windows.hpp -------------------------------------------------------------------------------- /API/GLEW/glew32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/GLEW/glew32.lib -------------------------------------------------------------------------------- /API/GLEW/glew32s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/GLEW/glew32s.lib -------------------------------------------------------------------------------- /API/GLEW/include/GL/eglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/GLEW/include/GL/eglew.h -------------------------------------------------------------------------------- /API/GLEW/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/GLEW/include/GL/glew.h -------------------------------------------------------------------------------- /API/GLEW/include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/GLEW/include/GL/glxew.h -------------------------------------------------------------------------------- /API/GLEW/include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/GLEW/include/GL/wglew.h -------------------------------------------------------------------------------- /API/GLFW/glfw3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/GLFW/glfw3.dll -------------------------------------------------------------------------------- /API/GLFW/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/GLFW/glfw3.lib -------------------------------------------------------------------------------- /API/GLFW/glfw3_mt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/GLFW/glfw3_mt.lib -------------------------------------------------------------------------------- /API/GLFW/glfw3dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/GLFW/glfw3dll.lib -------------------------------------------------------------------------------- /API/GLFW/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/GLFW/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /API/GLFW/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/GLFW/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/adl_serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/adl_serializer.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/byte_container_with_subtype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/byte_container_with_subtype.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/abi_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/abi_macros.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/conversions/from_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/conversions/from_json.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/conversions/to_chars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/conversions/to_chars.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/conversions/to_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/conversions/to_json.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/exceptions.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/hash.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/input/binary_reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/input/binary_reader.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/input/input_adapters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/input/input_adapters.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/input/json_sax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/input/json_sax.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/input/lexer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/input/lexer.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/input/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/input/parser.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/input/position_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/input/position_t.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/iterators/internal_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/iterators/internal_iterator.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/iterators/iter_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/iterators/iter_impl.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/iterators/iteration_proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/iterators/iteration_proxy.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/iterators/iterator_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/iterators/iterator_traits.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/iterators/json_reverse_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/iterators/json_reverse_iterator.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/iterators/primitive_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/iterators/primitive_iterator.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/json_custom_base_class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/json_custom_base_class.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/json_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/json_pointer.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/json_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/json_ref.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/macro_scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/macro_scope.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/macro_unscope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/macro_unscope.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/meta/call_std/begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/meta/call_std/begin.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/meta/call_std/end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/meta/call_std/end.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/meta/cpp_future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/meta/cpp_future.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/meta/detected.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/meta/detected.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/meta/identity_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/meta/identity_tag.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/meta/is_sax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/meta/is_sax.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/meta/std_fs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/meta/std_fs.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/meta/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/meta/type_traits.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/meta/void_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/meta/void_t.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/output/binary_writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/output/binary_writer.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/output/output_adapters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/output/output_adapters.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/output/serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/output/serializer.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/string_concat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/string_concat.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/string_escape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/string_escape.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/detail/value_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/detail/value_t.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/json.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/json_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/json_fwd.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/ordered_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/ordered_map.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/thirdparty/hedley/hedley.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/thirdparty/hedley/hedley.hpp -------------------------------------------------------------------------------- /API/JSON/include/nlohmann/thirdparty/hedley/hedley_undef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/JSON/include/nlohmann/thirdparty/hedley/hedley_undef.hpp -------------------------------------------------------------------------------- /API/JSON/null.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/README.md -------------------------------------------------------------------------------- /API/lz4/include/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/lz4/include/lz4.h -------------------------------------------------------------------------------- /API/lz4/include/lz4frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/lz4/include/lz4frame.h -------------------------------------------------------------------------------- /API/lz4/include/lz4hc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/lz4/include/lz4hc.h -------------------------------------------------------------------------------- /API/lz4/static/lz4_static.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/lz4/static/lz4_static.lib -------------------------------------------------------------------------------- /API/stb_image/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/API/stb_image/stb_image.h -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor.sln -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ComponentTreePanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ComponentTreePanel.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ControlPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ControlPanel.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DefaultWidget.cpp: -------------------------------------------------------------------------------- 1 | #include "DefaultWidget.h" 2 | -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DefaultWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DefaultWidget.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DeleteWidgetPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DeleteWidgetPanel.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/GLFW/glfw3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/GLFW/glfw3.dll -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/GLFW/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/GLFW/glfw3.lib -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/GLFW/glfw3_mt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/GLFW/glfw3_mt.lib -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/GLFW/glfw3dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/GLFW/glfw3dll.lib -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/GLFW/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/GLFW/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/GLFW/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/GLFW/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/LICENSE.txt -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/a.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_allegro5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_allegro5.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_allegro5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_allegro5.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_android.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_android.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_dx10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_dx10.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_dx10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_dx10.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_dx11.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_dx12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_dx12.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_dx12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_dx12.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_dx9.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_glfw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_glfw.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_glfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_glfw.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_glut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_glut.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_glut.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_metal.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_metal.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_metal.mm -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_opengl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_opengl2.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_opengl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_opengl2.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_opengl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_opengl3.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_opengl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_opengl3.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_opengl3_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_opengl3_loader.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_osx.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_osx.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_osx.mm -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_sdl.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_sdl.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_sdl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_sdl2.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_sdl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_sdl2.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_sdl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_sdl3.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_sdl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_sdl3.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_sdlrenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_sdlrenderer.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_sdlrenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_sdlrenderer.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_sdlrenderer2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_sdlrenderer2.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_sdlrenderer2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_sdlrenderer2.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_sdlrenderer3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_sdlrenderer3.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_sdlrenderer3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_sdlrenderer3.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_vulkan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_vulkan.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_vulkan.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_wgpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_wgpu.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_wgpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_wgpu.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/imgui_impl_win32.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/vulkan/generate_spv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/vulkan/generate_spv.sh -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/vulkan/glsl_shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/vulkan/glsl_shader.frag -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/vulkan/glsl_shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/backends/vulkan/glsl_shader.vert -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/docs/BACKENDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/docs/BACKENDS.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/docs/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/docs/CHANGELOG.txt -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/docs/EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/docs/EXAMPLES.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/docs/FAQ.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/docs/FONTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/docs/FONTS.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/docs/README.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/docs/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/docs/TODO.txt -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/imconfig.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/imgui.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/imgui.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/imgui_demo.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/imgui_draw.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/imgui_internal.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/imgui_tables.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/imgui_widgets.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/imstb_rectpack.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/imstb_textedit.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/imstb_truetype.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/README.txt -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/cpp/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/cpp/README.txt -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/cpp/imgui_stdlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/cpp/imgui_stdlib.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/cpp/imgui_stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/cpp/imgui_stdlib.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/debuggers/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/debuggers/README.txt -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/debuggers/imgui.gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/debuggers/imgui.gdb -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/debuggers/imgui.natstepfilter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/debuggers/imgui.natstepfilter -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/debuggers/imgui.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/debuggers/imgui.natvis -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/fonts/Cousine-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/fonts/Cousine-Regular.ttf -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/fonts/DroidSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/fonts/DroidSans.ttf -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/fonts/Karla-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/fonts/Karla-Regular.ttf -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/fonts/ProggyClean.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/fonts/ProggyClean.ttf -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/fonts/ProggyTiny.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/fonts/ProggyTiny.ttf -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/fonts/binary_to_compressed_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/fonts/binary_to_compressed_c.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/freetype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/freetype/README.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/freetype/imgui_freetype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/freetype/imgui_freetype.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/freetype/imgui_freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/freetype/imgui_freetype.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/single_file/imgui_single_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/API/ImGui/misc/single_file/imgui_single_file.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/API/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/Bin/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/Bin/glew32.dll -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/Bin/glfw3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/Bin/glfw3.dll -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/DFL.HLogo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/DFL.HLogo -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/HImGuiEditor Struct - Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/HImGuiEditor Struct - Copy.png -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/HImGuiEditor Struct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/HImGuiEditor Struct.png -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/Image/1EditViewBg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/Image/1EditViewBg.jpg -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/Image/Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/Image/Delete.png -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/Image/Discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/Image/Discord.png -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/Image/EditViewBg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/Image/EditViewBg.jpg -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/Image/Mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/Image/Mouse.png -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/Image/Move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/Image/Move.png -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/Image/Plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/Image/Plugin.png -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/Image/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/Image/Save.png -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/Image/Setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/Image/Setting.png -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/configuration file/Preferences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/configuration file/Preferences.json -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/configuration file/RecentlyOpenedPorject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/configuration file/RecentlyOpenedPorject.json -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/configuration file/Style/( f22 ) ByHalfPeopleStudio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/configuration file/Style/( f22 ) ByHalfPeopleStudio.json -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/configuration file/Style/( DeepSea )ByHalfPeopleStudio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/configuration file/Style/( DeepSea )ByHalfPeopleStudio.json -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/configuration file/Style/( default )ByHalfPeopleStudio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/configuration file/Style/( default )ByHalfPeopleStudio.json -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/configuration file/Style/UseStyle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/configuration file/Style/UseStyle.json -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/configuration file/TranslateCache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/configuration file/TranslateCache.json -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/configuration file/UseStyle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/configuration file/UseStyle.json -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/glew32.dll -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/glfw3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/glfw3.dll -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DependentFile/kaiu.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DependentFile/kaiu.ttf -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/DetailsPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/DetailsPanel.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ExportCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ExportCode.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ExportCodePanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ExportCodePanel.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/File.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/FileToolCallBack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/FileToolCallBack.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/FlagsList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/FlagsList.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/HAnimationSequencerPanel.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/HAnimationSequencerPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/HAnimationSequencerPanel.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/HArrow/HArrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/HArrow/HArrow.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/HFileBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/HFileBrowser.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/HFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/HFont.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/HImGuiStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/HImGuiStyle.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/HImGuiWidgetItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/HImGuiWidgetItem.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/HImGuiWindowDetailsPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/HImGuiWindowDetailsPanel.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/HImGuiWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/HImGuiWindows.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/HTranslate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/HTranslate.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/HValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/HValue.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/HWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/HWidget.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/HWindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/HWindows.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/HWindows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/HWindows.dll -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/HWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/HWindows.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/H_stb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/H_stb.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/HalfPeopleStudioImGuiEditor.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/HalfPeopleStudioImGuiEditor.vcxproj -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/HalfPeopleStudioImGuiEditor.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/HalfPeopleStudioImGuiEditor.vcxproj.filters -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/HalfPeopleStudioImGuiEditor.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/HalfPeopleStudioImGuiEditor.vcxproj.user -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImFileDialog/ImFileDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImFileDialog/ImFileDialog.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImFileDialog/ImFileDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImFileDialog/ImFileDialog.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImFileDialog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImFileDialog/README.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImFileDialog/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImFileDialog/example.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImFileDialogTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImFileDialogTool.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/LICENSE.txt -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_allegro5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_allegro5.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_allegro5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_allegro5.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_android.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_android.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_dx10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_dx10.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_dx10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_dx10.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_dx11.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_dx12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_dx12.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_dx12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_dx12.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_dx9.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_glfw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_glfw.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_glfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_glfw.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_glut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_glut.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_glut.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_metal.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_metal.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_metal.mm -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_opengl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_opengl2.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_opengl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_opengl2.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_opengl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_opengl3.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_opengl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_opengl3.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_opengl3_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_opengl3_loader.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_osx.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_osx.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_osx.mm -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_sdl.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_sdl.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_sdl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_sdl2.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_sdl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_sdl2.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_sdl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_sdl3.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_sdl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_sdl3.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_sdlrenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_sdlrenderer.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_sdlrenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_sdlrenderer.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_sdlrenderer2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_sdlrenderer2.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_sdlrenderer2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_sdlrenderer2.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_sdlrenderer3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_sdlrenderer3.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_sdlrenderer3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_sdlrenderer3.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_vulkan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_vulkan.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_vulkan.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_wgpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_wgpu.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_wgpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_wgpu.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/imgui_impl_win32.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/vulkan/generate_spv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/vulkan/generate_spv.sh -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/vulkan/glsl_shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/vulkan/glsl_shader.frag -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/backends/vulkan/glsl_shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/backends/vulkan/glsl_shader.vert -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/docs/BACKENDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/docs/BACKENDS.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/docs/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/docs/CHANGELOG.txt -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/docs/EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/docs/EXAMPLES.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/docs/FAQ.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/docs/FONTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/docs/FONTS.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/docs/README.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/docs/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/docs/TODO.txt -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/imconfig.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/imgui.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/imgui.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/imgui_demo.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/imgui_draw.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/imgui_internal.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/imgui_tables.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/imgui_widgets.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/imstb_rectpack.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/imstb_textedit.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/imstb_truetype.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/misc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/misc/README.txt -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/misc/cpp/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/misc/cpp/README.txt -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/misc/cpp/imgui_stdlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/misc/cpp/imgui_stdlib.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/misc/cpp/imgui_stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/misc/cpp/imgui_stdlib.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/misc/debuggers/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/misc/debuggers/README.txt -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/misc/debuggers/imgui.gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/misc/debuggers/imgui.gdb -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/misc/debuggers/imgui.natstepfilter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/misc/debuggers/imgui.natstepfilter -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/misc/debuggers/imgui.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/misc/debuggers/imgui.natvis -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/misc/fonts/Cousine-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/misc/fonts/Cousine-Regular.ttf -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/misc/fonts/DroidSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/misc/fonts/DroidSans.ttf -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/misc/fonts/Karla-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/misc/fonts/Karla-Regular.ttf -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/misc/fonts/ProggyClean.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/misc/fonts/ProggyClean.ttf -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/misc/fonts/ProggyTiny.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/misc/fonts/ProggyTiny.ttf -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/misc/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/misc/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/misc/fonts/binary_to_compressed_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/misc/fonts/binary_to_compressed_c.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/misc/freetype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/misc/freetype/README.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/misc/freetype/imgui_freetype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/misc/freetype/imgui_freetype.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/misc/freetype/imgui_freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/misc/freetype/imgui_freetype.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGui/misc/single_file/imgui_single_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGui/misc/single_file/imgui_single_file.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGuiColorTextEdit/TextEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGuiColorTextEdit/TextEditor.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGuiColorTextEdit/TextEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGuiColorTextEdit/TextEditor.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImGuiNotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImGuiNotify.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImNeoSequenc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImNeoSequenc/LICENSE -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImNeoSequenc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImNeoSequenc/README.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImNeoSequenc/imgui_neo_internal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImNeoSequenc/imgui_neo_internal.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImNeoSequenc/imgui_neo_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImNeoSequenc/imgui_neo_internal.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImNeoSequenc/imgui_neo_sequencer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImNeoSequenc/imgui_neo_sequencer.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImNeoSequenc/imgui_neo_sequencer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImNeoSequenc/imgui_neo_sequencer.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/ImNeoSequenc/screenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/ImNeoSequenc/screenshots/screenshot.png -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/KeyAndAutoSave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/KeyAndAutoSave.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/MainMenuBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/MainMenuBar.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/MainMenuBarVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/MainMenuBarVar.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/PagingPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/PagingPanel.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/include/Makefile.am -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/include/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/include/README.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/include/curl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/include/curl/Makefile.am -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/include/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/include/curl/curl.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/include/curl/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/include/curl/curlver.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/include/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/include/curl/easy.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/include/curl/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/include/curl/header.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/include/curl/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/include/curl/mprintf.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/include/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/include/curl/multi.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/include/curl/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/include/curl/options.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/include/curl/stdcheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/include/curl/stdcheaders.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/include/curl/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/include/curl/system.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/include/curl/typecheck-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/include/curl/typecheck-gcc.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/include/curl/urlapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/include/curl/urlapi.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/include/curl/websockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/include/curl/websockets.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/lib/libcurl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/lib/libcurl.dll -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/lib/libcurl_imp.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/lib/libcurl_imp.exp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/lib/libcurl_imp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/CURL/lib/libcurl_imp.lib -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/BUILD.bazel -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/CITATION.cff -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/CMakeLists.txt -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/ChangeLog.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/LICENSE.MIT -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/LICENSES/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/LICENSES/BSD-3-Clause.txt -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/LICENSES/GPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/LICENSES/GPL-3.0-only.txt -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/LICENSES/MIT.txt -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/Makefile -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/README.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/WORKSPACE.bazel: -------------------------------------------------------------------------------- 1 | workspace(name = "nlohmann_json") 2 | -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/a.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/cmake/ci.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/cmake/ci.cmake -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/cmake/config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/cmake/config.cmake.in -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/cmake/download_test_data.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/cmake/download_test_data.cmake -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/cmake/nlohmann_jsonConfigVersion.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/cmake/nlohmann_jsonConfigVersion.cmake.in -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/cmake/pkg-config.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/cmake/pkg-config.pc.in -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/cmake/scripts/gen_bazel_build_file.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/cmake/scripts/gen_bazel_build_file.cmake -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/cmake/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/cmake/test.cmake -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/adl_serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/adl_serializer.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/byte_container_with_subtype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/byte_container_with_subtype.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/abi_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/abi_macros.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/conversions/from_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/conversions/from_json.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/conversions/to_chars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/conversions/to_chars.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/conversions/to_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/conversions/to_json.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/exceptions.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/hash.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/input/binary_reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/input/binary_reader.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/input/input_adapters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/input/input_adapters.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/input/json_sax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/input/json_sax.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/input/lexer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/input/lexer.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/input/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/input/parser.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/input/position_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/input/position_t.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/iterators/iter_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/iterators/iter_impl.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/json_custom_base_class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/json_custom_base_class.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/json_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/json_pointer.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/json_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/json_ref.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/macro_scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/macro_scope.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/macro_unscope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/macro_unscope.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/meta/call_std/begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/meta/call_std/begin.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/meta/call_std/end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/meta/call_std/end.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/meta/cpp_future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/meta/cpp_future.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/meta/detected.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/meta/detected.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/meta/identity_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/meta/identity_tag.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/meta/is_sax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/meta/is_sax.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/meta/std_fs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/meta/std_fs.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/meta/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/meta/type_traits.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/meta/void_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/meta/void_t.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/output/binary_writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/output/binary_writer.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/output/output_adapters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/output/output_adapters.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/output/serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/output/serializer.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/string_concat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/string_concat.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/string_escape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/string_escape.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/value_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/detail/value_t.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/json.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/json_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/json_fwd.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/ordered_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/ordered_map.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/thirdparty/hedley/hedley.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/thirdparty/hedley/hedley.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/thirdparty/hedley/hedley_undef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/include/nlohmann/thirdparty/hedley/hedley_undef.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/meson.build -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/nlohmann_json.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/nlohmann_json.natvis -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/single_include/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/single_include/nlohmann/json.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/single_include/nlohmann/json_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/single_include/nlohmann/json_fwd.hpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/tools/amalgamate/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/tools/amalgamate/CHANGES.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/tools/amalgamate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/tools/amalgamate/README.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/tools/amalgamate/amalgamate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/tools/amalgamate/amalgamate.py -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/tools/amalgamate/config_json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/tools/amalgamate/config_json.json -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/tools/amalgamate/config_json_fwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/tools/amalgamate/config_json_fwd.json -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/tools/gdb_pretty_printer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/tools/gdb_pretty_printer/README.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/tools/gdb_pretty_printer/nlohmann-json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/tools/gdb_pretty_printer/nlohmann-json.py -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/tools/generate_natvis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/tools/generate_natvis/README.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/tools/generate_natvis/generate_natvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/tools/generate_natvis/generate_natvis.py -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/tools/generate_natvis/nlohmann_json.natvis.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/tools/generate_natvis/nlohmann_json.natvis.j2 -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/tools/macro_builder/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/tools/macro_builder/main.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/tools/serve_header/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/tools/serve_header/README.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/tools/serve_header/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/tools/serve_header/demo.png -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/tools/serve_header/requirements.txt: -------------------------------------------------------------------------------- 1 | PyYAML==6.0 2 | watchdog==2.1.7 3 | -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/tools/serve_header/serve_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/tools/serve_header/serve_header.py -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/tools/serve_header/serve_header.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/tools/serve_header/serve_header.yml.example -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/wsjcpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/JSON/wsjcpp.yml -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/API/a.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin.sln -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/HArrow/HArrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/HArrow/HArrow.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/HImGuiEditorPlugin.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/HImGuiEditorPlugin.vcxproj -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/HImGuiEditorPlugin.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/HImGuiEditorPlugin.vcxproj.filters -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/HImGuiEditorPlugin.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/HImGuiEditorPlugin.vcxproj.user -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/HPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/HPlugin.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/HTranslate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/HTranslate.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/HValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/HValue.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/HWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/HWidget.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/LICENSE.txt -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/a.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_allegro5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_allegro5.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_allegro5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_allegro5.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_android.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_android.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_dx10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_dx10.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_dx10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_dx10.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_dx11.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_dx12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_dx12.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_dx12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_dx12.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_dx9.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_glfw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_glfw.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_glfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_glfw.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_glut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_glut.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_glut.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_metal.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_metal.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_metal.mm -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_opengl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_opengl2.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_opengl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_opengl2.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_opengl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_opengl3.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_opengl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_opengl3.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_osx.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_osx.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_osx.mm -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_sdl.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_sdl.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_sdl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_sdl2.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_sdl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_sdl2.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_sdl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_sdl3.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_sdl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_sdl3.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_vulkan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_vulkan.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_vulkan.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_wgpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_wgpu.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_wgpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_wgpu.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/imgui_impl_win32.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/vulkan/generate_spv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/vulkan/generate_spv.sh -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/vulkan/glsl_shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/vulkan/glsl_shader.frag -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/vulkan/glsl_shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/backends/vulkan/glsl_shader.vert -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/docs/BACKENDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/docs/BACKENDS.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/docs/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/docs/CHANGELOG.txt -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/docs/EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/docs/EXAMPLES.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/docs/FAQ.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/docs/FONTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/docs/FONTS.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/docs/README.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/docs/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/docs/TODO.txt -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/imconfig.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/imgui.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/imgui.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/imgui_demo.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/imgui_draw.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/imgui_internal.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/imgui_tables.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/imgui_widgets.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/imstb_rectpack.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/imstb_textedit.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/imstb_truetype.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/README.txt -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/cpp/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/cpp/README.txt -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/cpp/imgui_stdlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/cpp/imgui_stdlib.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/cpp/imgui_stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/cpp/imgui_stdlib.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/debuggers/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/debuggers/README.txt -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/debuggers/imgui.gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/debuggers/imgui.gdb -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/debuggers/imgui.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/debuggers/imgui.natvis -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/fonts/Cousine-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/fonts/Cousine-Regular.ttf -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/fonts/DroidSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/fonts/DroidSans.ttf -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/fonts/Karla-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/fonts/Karla-Regular.ttf -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/fonts/ProggyClean.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/fonts/ProggyClean.ttf -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/fonts/ProggyTiny.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/fonts/ProggyTiny.ttf -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/freetype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/freetype/README.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/freetype/imgui_freetype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/freetype/imgui_freetype.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/freetype/imgui_freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImGui/misc/freetype/imgui_freetype.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImNeoSequenc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImNeoSequenc/LICENSE -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImNeoSequenc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImNeoSequenc/README.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImNeoSequenc/imgui_neo_sequencer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/ImNeoSequenc/imgui_neo_sequencer.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/a.txe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/dllmain.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/framework.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/imgui_neo_sequencer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/imgui_neo_sequencer.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/pch.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/HImGuiEditorPlugin/pch.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/a.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/x64/Release/HImGuiEditorPlugin.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/x64/Release/HImGuiEditorPlugin.exp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/x64/Release/HImGuiEditorPlugin.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/x64/Release/HImGuiEditorPlugin.lib -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/x64/Release/HImGuiEditorPlugin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Plugin-Example/HImGuiEditorPlugin/x64/Release/HImGuiEditorPlugin.pdb -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Widget/HToggleButton/Content/ImGuiColorTextEdit-master/CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Widget/HToggleButton/Content/ImGuiColorTextEdit-master/CONTRIBUTING -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Widget/HToggleButton/Content/ImGuiColorTextEdit-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Widget/HToggleButton/Content/ImGuiColorTextEdit-master/LICENSE -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Widget/HToggleButton/Content/ImGuiColorTextEdit-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Widget/HToggleButton/Content/ImGuiColorTextEdit-master/README.md -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Widget/HToggleButton/Content/ImGuiColorTextEdit-master/TextEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Widget/HToggleButton/Content/ImGuiColorTextEdit-master/TextEditor.cpp -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Widget/HToggleButton/Content/ImGuiColorTextEdit-master/TextEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Widget/HToggleButton/Content/ImGuiColorTextEdit-master/TextEditor.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Widget/HToggleButton/HImGuiEditorPlugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Widget/HToggleButton/HImGuiEditorPlugin.dll -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Widget/HToggleButton/PluginImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Plugin/Widget/HToggleButton/PluginImage.png -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Plugin/Widget/HToggleButton/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/PluginPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/PluginPanel.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/Porject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/Porject.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/PorjectSettingPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/PorjectSettingPanel.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/SettingPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/SettingPanel.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/SplashScreenPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/SplashScreenPanel.h -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/imgui.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/imgui.ini -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/libcurl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/libcurl.dll -------------------------------------------------------------------------------- /HalfPeopleStudioImGuiEditor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/HalfPeopleStudioImGuiEditor/main.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/README.md -------------------------------------------------------------------------------- /x64/Release/Button.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/Button.dll -------------------------------------------------------------------------------- /x64/Release/Button.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/Button.pdb -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/GLFW/glfw3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/GLFW/glfw3.dll -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/GLFW/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/GLFW/glfw3.lib -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/GLFW/glfw3_mt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/GLFW/glfw3_mt.lib -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/GLFW/glfw3dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/GLFW/glfw3dll.lib -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/GLFW/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/GLFW/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/GLFW/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/GLFW/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/LICENSE.txt -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/a: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_allegro5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_allegro5.cpp -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_allegro5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_allegro5.h -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_android.cpp -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_android.h -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_dx10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_dx10.cpp -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_dx10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_dx10.h -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_dx11.h -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_dx12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_dx12.cpp -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_dx12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_dx12.h -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_dx9.h -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_glfw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_glfw.cpp -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_glfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_glfw.h -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_glut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_glut.cpp -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_glut.h -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_metal.h -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_metal.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_metal.mm -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_opengl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_opengl2.cpp -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_opengl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_opengl2.h -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_opengl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_opengl3.cpp -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_opengl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_opengl3.h -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_opengl3_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_opengl3_loader.h -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_osx.h -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_osx.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_osx.mm -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_sdl.cpp -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_sdl.h -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_sdlrenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_sdlrenderer.cpp -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_sdlrenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_sdlrenderer.h -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_vulkan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_vulkan.cpp -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_vulkan.h -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_wgpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_wgpu.cpp -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_wgpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_wgpu.h -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/imgui_impl_win32.h -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/vulkan/generate_spv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/vulkan/generate_spv.sh -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/vulkan/glsl_shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/vulkan/glsl_shader.frag -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/backends/vulkan/glsl_shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/backends/vulkan/glsl_shader.vert -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/imconfig.h -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/imgui.cpp -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/imgui.h -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/imgui_demo.cpp -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/imgui_draw.cpp -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/imgui_internal.h -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/imgui_tables.cpp -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/imgui_widgets.cpp -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/imstb_rectpack.h -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/imstb_textedit.h -------------------------------------------------------------------------------- /x64/Release/DependentFile/API/ImGui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/API/ImGui/imstb_truetype.h -------------------------------------------------------------------------------- /x64/Release/DependentFile/DFL.HLogo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/DFL.HLogo -------------------------------------------------------------------------------- /x64/Release/DependentFile/HImGuiEditor Struct - Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/HImGuiEditor Struct - Copy.png -------------------------------------------------------------------------------- /x64/Release/DependentFile/HImGuiEditor Struct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/HImGuiEditor Struct.png -------------------------------------------------------------------------------- /x64/Release/DependentFile/Image/1EditViewBg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/Image/1EditViewBg.jpg -------------------------------------------------------------------------------- /x64/Release/DependentFile/Image/Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/Image/Delete.png -------------------------------------------------------------------------------- /x64/Release/DependentFile/Image/Discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/Image/Discord.png -------------------------------------------------------------------------------- /x64/Release/DependentFile/Image/EditViewBg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/Image/EditViewBg.jpg -------------------------------------------------------------------------------- /x64/Release/DependentFile/Image/Mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/Image/Mouse.png -------------------------------------------------------------------------------- /x64/Release/DependentFile/Image/Move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/Image/Move.png -------------------------------------------------------------------------------- /x64/Release/DependentFile/Image/Plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/Image/Plugin.png -------------------------------------------------------------------------------- /x64/Release/DependentFile/Image/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/Image/Save.png -------------------------------------------------------------------------------- /x64/Release/DependentFile/Image/Setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/Image/Setting.png -------------------------------------------------------------------------------- /x64/Release/DependentFile/configuration file/Preferences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/configuration file/Preferences.json -------------------------------------------------------------------------------- /x64/Release/DependentFile/configuration file/Style/( f22 ) ByHalfPeopleStudio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/configuration file/Style/( f22 ) ByHalfPeopleStudio.json -------------------------------------------------------------------------------- /x64/Release/DependentFile/configuration file/Style/( DeepSea )ByHalfPeopleStudio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/configuration file/Style/( DeepSea )ByHalfPeopleStudio.json -------------------------------------------------------------------------------- /x64/Release/DependentFile/configuration file/Style/( default )ByHalfPeopleStudio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/configuration file/Style/( default )ByHalfPeopleStudio.json -------------------------------------------------------------------------------- /x64/Release/DependentFile/configuration file/Style/( f22 ) ByHalfPeopleStudio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/configuration file/Style/( f22 ) ByHalfPeopleStudio.json -------------------------------------------------------------------------------- /x64/Release/DependentFile/configuration file/Style/UseStyle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/configuration file/Style/UseStyle.json -------------------------------------------------------------------------------- /x64/Release/DependentFile/configuration file/UseStyle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/configuration file/UseStyle.json -------------------------------------------------------------------------------- /x64/Release/DependentFile/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/glew32.dll -------------------------------------------------------------------------------- /x64/Release/DependentFile/glfw3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/glfw3.dll -------------------------------------------------------------------------------- /x64/Release/DependentFile/kaiu.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/DependentFile/kaiu.ttf -------------------------------------------------------------------------------- /x64/Release/HWindows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/HWindows.dll -------------------------------------------------------------------------------- /x64/Release/HalfPeopleStudioImGuiEditor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/HalfPeopleStudioImGuiEditor.exe -------------------------------------------------------------------------------- /x64/Release/HalfPeopleStudioImGuiEditor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/HalfPeopleStudioImGuiEditor.pdb -------------------------------------------------------------------------------- /x64/Release/Plugin/Widget/ToggleButton/Content/ImGuiColorTextEdit-master/CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/Plugin/Widget/ToggleButton/Content/ImGuiColorTextEdit-master/CONTRIBUTING -------------------------------------------------------------------------------- /x64/Release/Plugin/Widget/ToggleButton/Content/ImGuiColorTextEdit-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/Plugin/Widget/ToggleButton/Content/ImGuiColorTextEdit-master/LICENSE -------------------------------------------------------------------------------- /x64/Release/Plugin/Widget/ToggleButton/Content/ImGuiColorTextEdit-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/Plugin/Widget/ToggleButton/Content/ImGuiColorTextEdit-master/README.md -------------------------------------------------------------------------------- /x64/Release/Plugin/Widget/ToggleButton/Content/ImGuiColorTextEdit-master/TextEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/Plugin/Widget/ToggleButton/Content/ImGuiColorTextEdit-master/TextEditor.cpp -------------------------------------------------------------------------------- /x64/Release/Plugin/Widget/ToggleButton/Content/ImGuiColorTextEdit-master/TextEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/Plugin/Widget/ToggleButton/Content/ImGuiColorTextEdit-master/TextEditor.h -------------------------------------------------------------------------------- /x64/Release/Plugin/Widget/ToggleButton/HImGuiEditorPlugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/Plugin/Widget/ToggleButton/HImGuiEditorPlugin.dll -------------------------------------------------------------------------------- /x64/Release/Plugin/Widget/ToggleButton/PluginImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/Plugin/Widget/ToggleButton/PluginImage.png -------------------------------------------------------------------------------- /x64/Release/imgui.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/imgui.ini -------------------------------------------------------------------------------- /x64/Release/libcurl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiEditor/HEAD/x64/Release/libcurl.dll --------------------------------------------------------------------------------