├── Menu remake part 1 ├── External Menu Base.sln ├── Loader Base.vcxproj ├── Loader Base.vcxproj.filters ├── Loader Base.vcxproj.user ├── Loader.cpp ├── Loader.h ├── font.h ├── functions.cpp ├── functions.h ├── iconcpp.h ├── icons.h ├── imgui │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_impl_dx9.cpp │ ├── imgui_impl_dx9.h │ ├── imgui_impl_win32.cpp │ ├── imgui_impl_win32.h │ ├── imgui_internal.h │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h ├── imguipp.cpp ├── imguipp.h ├── menu.cpp ├── menu.h └── settings.h └── Menu remake part 2 ├── External Menu Base.sln ├── Loader Base.vcxproj ├── Loader Base.vcxproj.filters ├── Loader Base.vcxproj.user ├── Loader.cpp ├── Loader.h ├── TextEditor.cpp ├── TextEditor.h ├── font.h ├── functions.cpp ├── functions.h ├── iconcpp.h ├── icons.h ├── imgui ├── imconfig.h ├── imgui.cpp ├── imgui.h ├── imgui_demo.cpp ├── imgui_draw.cpp ├── imgui_impl_dx9.cpp ├── imgui_impl_dx9.h ├── imgui_impl_win32.cpp ├── imgui_impl_win32.h ├── imgui_internal.h ├── imgui_widgets.cpp ├── imstb_rectpack.h ├── imstb_textedit.h └── imstb_truetype.h ├── imguipp.cpp ├── imguipp.h ├── menu.cpp ├── menu.h └── settings.h /Menu remake part 1/External Menu Base.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 1/External Menu Base.sln -------------------------------------------------------------------------------- /Menu remake part 1/Loader Base.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 1/Loader Base.vcxproj -------------------------------------------------------------------------------- /Menu remake part 1/Loader Base.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 1/Loader Base.vcxproj.filters -------------------------------------------------------------------------------- /Menu remake part 1/Loader Base.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 1/Loader Base.vcxproj.user -------------------------------------------------------------------------------- /Menu remake part 1/Loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 1/Loader.cpp -------------------------------------------------------------------------------- /Menu remake part 1/Loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 1/Loader.h -------------------------------------------------------------------------------- /Menu remake part 1/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 1/font.h -------------------------------------------------------------------------------- /Menu remake part 1/functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 1/functions.cpp -------------------------------------------------------------------------------- /Menu remake part 1/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 1/functions.h -------------------------------------------------------------------------------- /Menu remake part 1/iconcpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 1/iconcpp.h -------------------------------------------------------------------------------- /Menu remake part 1/icons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 1/icons.h -------------------------------------------------------------------------------- /Menu remake part 1/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 1/imgui/imconfig.h -------------------------------------------------------------------------------- /Menu remake part 1/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 1/imgui/imgui.cpp -------------------------------------------------------------------------------- /Menu remake part 1/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 1/imgui/imgui.h -------------------------------------------------------------------------------- /Menu remake part 1/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 1/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /Menu remake part 1/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 1/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /Menu remake part 1/imgui/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 1/imgui/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /Menu remake part 1/imgui/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 1/imgui/imgui_impl_dx9.h -------------------------------------------------------------------------------- /Menu remake part 1/imgui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 1/imgui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /Menu remake part 1/imgui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 1/imgui/imgui_impl_win32.h -------------------------------------------------------------------------------- /Menu remake part 1/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 1/imgui/imgui_internal.h -------------------------------------------------------------------------------- /Menu remake part 1/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 1/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /Menu remake part 1/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 1/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /Menu remake part 1/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 1/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /Menu remake part 1/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 1/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /Menu remake part 1/imguipp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 1/imguipp.cpp -------------------------------------------------------------------------------- /Menu remake part 1/imguipp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 1/imguipp.h -------------------------------------------------------------------------------- /Menu remake part 1/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 1/menu.cpp -------------------------------------------------------------------------------- /Menu remake part 1/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 1/menu.h -------------------------------------------------------------------------------- /Menu remake part 1/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 1/settings.h -------------------------------------------------------------------------------- /Menu remake part 2/External Menu Base.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/External Menu Base.sln -------------------------------------------------------------------------------- /Menu remake part 2/Loader Base.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/Loader Base.vcxproj -------------------------------------------------------------------------------- /Menu remake part 2/Loader Base.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/Loader Base.vcxproj.filters -------------------------------------------------------------------------------- /Menu remake part 2/Loader Base.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/Loader Base.vcxproj.user -------------------------------------------------------------------------------- /Menu remake part 2/Loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/Loader.cpp -------------------------------------------------------------------------------- /Menu remake part 2/Loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/Loader.h -------------------------------------------------------------------------------- /Menu remake part 2/TextEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/TextEditor.cpp -------------------------------------------------------------------------------- /Menu remake part 2/TextEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/TextEditor.h -------------------------------------------------------------------------------- /Menu remake part 2/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/font.h -------------------------------------------------------------------------------- /Menu remake part 2/functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/functions.cpp -------------------------------------------------------------------------------- /Menu remake part 2/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/functions.h -------------------------------------------------------------------------------- /Menu remake part 2/iconcpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/iconcpp.h -------------------------------------------------------------------------------- /Menu remake part 2/icons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/icons.h -------------------------------------------------------------------------------- /Menu remake part 2/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/imgui/imconfig.h -------------------------------------------------------------------------------- /Menu remake part 2/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/imgui/imgui.cpp -------------------------------------------------------------------------------- /Menu remake part 2/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/imgui/imgui.h -------------------------------------------------------------------------------- /Menu remake part 2/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /Menu remake part 2/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /Menu remake part 2/imgui/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/imgui/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /Menu remake part 2/imgui/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/imgui/imgui_impl_dx9.h -------------------------------------------------------------------------------- /Menu remake part 2/imgui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/imgui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /Menu remake part 2/imgui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/imgui/imgui_impl_win32.h -------------------------------------------------------------------------------- /Menu remake part 2/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/imgui/imgui_internal.h -------------------------------------------------------------------------------- /Menu remake part 2/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /Menu remake part 2/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /Menu remake part 2/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /Menu remake part 2/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /Menu remake part 2/imguipp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/imguipp.cpp -------------------------------------------------------------------------------- /Menu remake part 2/imguipp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/imguipp.h -------------------------------------------------------------------------------- /Menu remake part 2/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/menu.cpp -------------------------------------------------------------------------------- /Menu remake part 2/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/menu.h -------------------------------------------------------------------------------- /Menu remake part 2/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xo1337/ImGui-Tutorials/HEAD/Menu remake part 2/settings.h --------------------------------------------------------------------------------