├── .gitignore ├── AntiDebug.sln ├── AntiDebug.vcxproj ├── AntiDebug.vcxproj.filters ├── LICENSE ├── README.md ├── antidebug.cpp ├── antidebug.h ├── dependencies ├── include │ └── ftxui │ │ ├── component │ │ ├── animation.hpp │ │ ├── captured_mouse.hpp │ │ ├── component.hpp │ │ ├── component_base.hpp │ │ ├── component_options.hpp │ │ ├── event.hpp │ │ ├── loop.hpp │ │ ├── mouse.hpp │ │ ├── receiver.hpp │ │ ├── screen_interactive.hpp │ │ └── task.hpp │ │ ├── dom │ │ ├── canvas.hpp │ │ ├── deprecated.hpp │ │ ├── direction.hpp │ │ ├── elements.hpp │ │ ├── flexbox_config.hpp │ │ ├── linear_gradient.hpp │ │ ├── node.hpp │ │ ├── requirement.hpp │ │ ├── selection.hpp │ │ ├── table.hpp │ │ └── take_any_args.hpp │ │ ├── screen │ │ ├── box.hpp │ │ ├── color.hpp │ │ ├── color_info.hpp │ │ ├── deprecated.hpp │ │ ├── image.hpp │ │ ├── pixel.hpp │ │ ├── screen.hpp │ │ ├── string.hpp │ │ └── terminal.hpp │ │ └── util │ │ ├── autoreset.hpp │ │ └── ref.hpp └── lib │ ├── ftxui-component-debug.lib │ ├── ftxui-component-release.lib │ ├── ftxui-dom-debug.lib │ ├── ftxui-dom-release.lib │ ├── ftxui-screen-debug.lib │ └── ftxui-screen-release.lib ├── main.cpp ├── repo └── preview.png ├── ui.cpp ├── ui.h └── winstructs.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/.gitignore -------------------------------------------------------------------------------- /AntiDebug.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/AntiDebug.sln -------------------------------------------------------------------------------- /AntiDebug.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/AntiDebug.vcxproj -------------------------------------------------------------------------------- /AntiDebug.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/AntiDebug.vcxproj.filters -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/README.md -------------------------------------------------------------------------------- /antidebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/antidebug.cpp -------------------------------------------------------------------------------- /antidebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/antidebug.h -------------------------------------------------------------------------------- /dependencies/include/ftxui/component/animation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/component/animation.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/component/captured_mouse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/component/captured_mouse.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/component/component.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/component/component.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/component/component_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/component/component_base.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/component/component_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/component/component_options.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/component/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/component/event.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/component/loop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/component/loop.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/component/mouse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/component/mouse.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/component/receiver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/component/receiver.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/component/screen_interactive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/component/screen_interactive.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/component/task.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/component/task.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/dom/canvas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/dom/canvas.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/dom/deprecated.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/dom/deprecated.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/dom/direction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/dom/direction.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/dom/elements.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/dom/elements.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/dom/flexbox_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/dom/flexbox_config.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/dom/linear_gradient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/dom/linear_gradient.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/dom/node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/dom/node.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/dom/requirement.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/dom/requirement.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/dom/selection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/dom/selection.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/dom/table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/dom/table.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/dom/take_any_args.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/dom/take_any_args.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/screen/box.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/screen/box.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/screen/color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/screen/color.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/screen/color_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/screen/color_info.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/screen/deprecated.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/screen/deprecated.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/screen/image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/screen/image.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/screen/pixel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/screen/pixel.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/screen/screen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/screen/screen.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/screen/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/screen/string.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/screen/terminal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/screen/terminal.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/util/autoreset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/util/autoreset.hpp -------------------------------------------------------------------------------- /dependencies/include/ftxui/util/ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/include/ftxui/util/ref.hpp -------------------------------------------------------------------------------- /dependencies/lib/ftxui-component-debug.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/lib/ftxui-component-debug.lib -------------------------------------------------------------------------------- /dependencies/lib/ftxui-component-release.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/lib/ftxui-component-release.lib -------------------------------------------------------------------------------- /dependencies/lib/ftxui-dom-debug.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/lib/ftxui-dom-debug.lib -------------------------------------------------------------------------------- /dependencies/lib/ftxui-dom-release.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/lib/ftxui-dom-release.lib -------------------------------------------------------------------------------- /dependencies/lib/ftxui-screen-debug.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/lib/ftxui-screen-debug.lib -------------------------------------------------------------------------------- /dependencies/lib/ftxui-screen-release.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/dependencies/lib/ftxui-screen-release.lib -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/main.cpp -------------------------------------------------------------------------------- /repo/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/repo/preview.png -------------------------------------------------------------------------------- /ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/ui.cpp -------------------------------------------------------------------------------- /ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/ui.h -------------------------------------------------------------------------------- /winstructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxo-games/AntiDebug/HEAD/winstructs.h --------------------------------------------------------------------------------