├── LICENSE ├── README.md ├── overlay.sln └── overlay ├── features ├── globals.h └── menu │ ├── gui.cpp │ └── gui.h ├── includes.h ├── librarys ├── banding │ └── banding.h ├── freetype │ ├── include │ │ ├── freetype │ │ │ ├── config │ │ │ │ ├── ftconfig.h │ │ │ │ ├── ftheader.h │ │ │ │ ├── ftmodule.h │ │ │ │ ├── ftoption.h │ │ │ │ ├── ftstdlib.h │ │ │ │ ├── integer-types.h │ │ │ │ ├── mac-support.h │ │ │ │ └── public-macros.h │ │ │ ├── freetype.h │ │ │ ├── ftadvanc.h │ │ │ ├── ftbbox.h │ │ │ ├── ftbdf.h │ │ │ ├── ftbitmap.h │ │ │ ├── ftbzip2.h │ │ │ ├── ftcache.h │ │ │ ├── ftchapters.h │ │ │ ├── ftcid.h │ │ │ ├── ftcolor.h │ │ │ ├── ftdriver.h │ │ │ ├── fterrdef.h │ │ │ ├── fterrors.h │ │ │ ├── ftfntfmt.h │ │ │ ├── ftgasp.h │ │ │ ├── ftglyph.h │ │ │ ├── ftgxval.h │ │ │ ├── ftgzip.h │ │ │ ├── ftimage.h │ │ │ ├── ftincrem.h │ │ │ ├── ftlcdfil.h │ │ │ ├── ftlist.h │ │ │ ├── ftlogging.h │ │ │ ├── ftlzw.h │ │ │ ├── ftmac.h │ │ │ ├── ftmm.h │ │ │ ├── ftmodapi.h │ │ │ ├── ftmoderr.h │ │ │ ├── ftotval.h │ │ │ ├── ftoutln.h │ │ │ ├── ftparams.h │ │ │ ├── ftpfr.h │ │ │ ├── ftrender.h │ │ │ ├── ftsizes.h │ │ │ ├── ftsnames.h │ │ │ ├── ftstroke.h │ │ │ ├── ftsynth.h │ │ │ ├── ftsystem.h │ │ │ ├── fttrigon.h │ │ │ ├── fttypes.h │ │ │ ├── ftwinfnt.h │ │ │ ├── otsvg.h │ │ │ ├── t1tables.h │ │ │ ├── ttnameid.h │ │ │ ├── tttables.h │ │ │ └── tttags.h │ │ └── ft2build.h │ └── objs │ │ ├── x64 │ │ └── freetype.lib │ │ └── x86 │ │ └── freetype.lib └── imgui │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_freetype.cpp │ ├── imgui_freetype.h │ ├── imgui_impl_dx11.cpp │ ├── imgui_impl_dx11.h │ ├── imgui_impl_win32.cpp │ ├── imgui_impl_win32.h │ ├── imgui_internal.h │ ├── imgui_tables.cpp │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h ├── main.cpp ├── overlay.vcxproj ├── overlay.vcxproj.filters ├── overlay.vcxproj.user └── overlay ├── overlay.cpp └── overlay.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/README.md -------------------------------------------------------------------------------- /overlay.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay.sln -------------------------------------------------------------------------------- /overlay/features/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/features/globals.h -------------------------------------------------------------------------------- /overlay/features/menu/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/features/menu/gui.cpp -------------------------------------------------------------------------------- /overlay/features/menu/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/features/menu/gui.h -------------------------------------------------------------------------------- /overlay/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/includes.h -------------------------------------------------------------------------------- /overlay/librarys/banding/banding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/banding/banding.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/config/ftconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/config/ftconfig.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/config/ftheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/config/ftheader.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/config/ftmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/config/ftmodule.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/config/ftoption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/config/ftoption.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/config/ftstdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/config/ftstdlib.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/config/integer-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/config/integer-types.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/config/mac-support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/config/mac-support.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/config/public-macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/config/public-macros.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/freetype.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftadvanc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftadvanc.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftbbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftbbox.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftbdf.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftbitmap.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftbzip2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftbzip2.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftcache.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftchapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftchapters.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftcid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftcid.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftcolor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftcolor.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftdriver.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/fterrdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/fterrdef.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/fterrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/fterrors.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftfntfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftfntfmt.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftgasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftgasp.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftglyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftglyph.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftgxval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftgxval.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftgzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftgzip.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftimage.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftincrem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftincrem.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftlcdfil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftlcdfil.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftlist.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftlogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftlogging.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftlzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftlzw.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftmac.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftmm.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftmodapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftmodapi.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftmoderr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftmoderr.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftotval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftotval.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftoutln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftoutln.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftparams.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftpfr.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftrender.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftsizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftsizes.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftsnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftsnames.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftstroke.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftsynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftsynth.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftsystem.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/fttrigon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/fttrigon.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/fttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/fttypes.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ftwinfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ftwinfnt.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/otsvg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/otsvg.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/t1tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/t1tables.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/ttnameid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/ttnameid.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/tttables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/tttables.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/freetype/tttags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/freetype/tttags.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/include/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/include/ft2build.h -------------------------------------------------------------------------------- /overlay/librarys/freetype/objs/x64/freetype.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/objs/x64/freetype.lib -------------------------------------------------------------------------------- /overlay/librarys/freetype/objs/x86/freetype.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/freetype/objs/x86/freetype.lib -------------------------------------------------------------------------------- /overlay/librarys/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/imgui/imconfig.h -------------------------------------------------------------------------------- /overlay/librarys/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/imgui/imgui.cpp -------------------------------------------------------------------------------- /overlay/librarys/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/imgui/imgui.h -------------------------------------------------------------------------------- /overlay/librarys/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /overlay/librarys/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /overlay/librarys/imgui/imgui_freetype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/imgui/imgui_freetype.cpp -------------------------------------------------------------------------------- /overlay/librarys/imgui/imgui_freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/imgui/imgui_freetype.h -------------------------------------------------------------------------------- /overlay/librarys/imgui/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/imgui/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /overlay/librarys/imgui/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/imgui/imgui_impl_dx11.h -------------------------------------------------------------------------------- /overlay/librarys/imgui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/imgui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /overlay/librarys/imgui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/imgui/imgui_impl_win32.h -------------------------------------------------------------------------------- /overlay/librarys/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/imgui/imgui_internal.h -------------------------------------------------------------------------------- /overlay/librarys/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /overlay/librarys/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /overlay/librarys/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /overlay/librarys/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /overlay/librarys/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/librarys/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /overlay/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/main.cpp -------------------------------------------------------------------------------- /overlay/overlay.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/overlay.vcxproj -------------------------------------------------------------------------------- /overlay/overlay.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/overlay.vcxproj.filters -------------------------------------------------------------------------------- /overlay/overlay.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/overlay.vcxproj.user -------------------------------------------------------------------------------- /overlay/overlay/overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/overlay/overlay.cpp -------------------------------------------------------------------------------- /overlay/overlay/overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhillipDaPaster/Fullscreen-Overlay/HEAD/overlay/overlay/overlay.h --------------------------------------------------------------------------------