├── README.md ├── RW ├── RW.vcxproj ├── RW.vcxproj.filters ├── Resource.aps ├── Resource.rc ├── dependencies │ ├── curl │ │ ├── curl.h │ │ ├── curlver.h │ │ ├── easy.h │ │ ├── libcurl_a.lib │ │ ├── mprintf.h │ │ ├── multi.h │ │ ├── stdcheaders.h │ │ ├── system.h │ │ ├── typecheck-gcc.h │ │ └── urlapi.h │ ├── exception_handler │ │ ├── ExceptionHandler.cpp │ │ └── ExceptionHandler.hpp │ ├── imgui │ │ ├── imconfig.h │ │ ├── imgui.cpp │ │ ├── imgui.h │ │ ├── imgui.ini │ │ ├── imgui_demo.cpp │ │ ├── imgui_draw.cpp │ │ ├── imgui_impl_dx11.cpp │ │ ├── imgui_impl_dx11.h │ │ ├── imgui_impl_dx9.cpp │ │ ├── imgui_impl_dx9.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 │ ├── inst_size │ │ └── InstructionSize.h │ ├── json │ │ └── json.hpp │ └── oxorany │ │ ├── oxorany.cpp │ │ └── oxorany.h ├── dllmain.cpp ├── features │ ├── aimbot │ │ ├── aimbot.cpp │ │ └── aimbot.hpp │ ├── misc │ │ ├── misc.cpp │ │ └── misc.hpp │ └── visuals │ │ ├── visuals.cpp │ │ └── visuals.hpp ├── games │ ├── arsenal │ │ ├── arsenal.cpp │ │ └── arsenal.hpp │ ├── bad_business │ │ ├── bad_business.cpp │ │ └── bad_business.hpp │ ├── base_game │ │ ├── base_game.cpp │ │ └── base_game.hpp │ ├── front_lines │ │ ├── front_lines.cpp │ │ └── front_lines.hpp │ ├── games.cpp │ ├── games.hpp │ ├── phantom_forces │ │ ├── phantom_forces.cpp │ │ └── phantom_forces.hpp │ └── rush_point │ │ ├── rush_point.cpp │ │ └── rush_point.hpp ├── math │ ├── math.cpp │ └── math.hpp ├── renderer │ ├── menu │ │ ├── config │ │ │ ├── config.cpp │ │ │ └── config.hpp │ │ ├── fonts │ │ │ └── poppins.hpp │ │ ├── libs │ │ │ ├── imgui_tricks.cpp │ │ │ ├── imgui_tricks.hpp │ │ │ └── keys.hpp │ │ ├── ui.cpp │ │ └── ui.hpp │ ├── renderer.cpp │ └── renderer.hpp ├── resource.h ├── roblox │ ├── roblox.cpp │ └── roblox.hpp └── task_scheduler │ ├── task_scheduler.cpp │ └── task_scheduler.hpp ├── RWB ├── RWB.sln └── RWB │ ├── RWB.vcxproj │ ├── RWB.vcxproj.filters │ ├── Resource.rc │ ├── dllmain.cpp │ └── resource.h └── RWI └── RWI ├── RWI.cpp ├── RWI.vcxproj ├── Resource.rc ├── dependencies └── curl │ ├── curl.h │ ├── curlver.h │ ├── easy.h │ ├── libcurl_a.lib │ ├── mprintf.h │ ├── multi.h │ ├── stdcheaders.h │ ├── system.h │ ├── typecheck-gcc.h │ └── urlapi.h ├── memory ├── memory.cpp └── memory.hpp ├── mmap ├── manual_map.cpp └── manual_map.hpp └── resource.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/README.md -------------------------------------------------------------------------------- /RW/RW.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/RW.vcxproj -------------------------------------------------------------------------------- /RW/RW.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/RW.vcxproj.filters -------------------------------------------------------------------------------- /RW/Resource.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/Resource.aps -------------------------------------------------------------------------------- /RW/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/Resource.rc -------------------------------------------------------------------------------- /RW/dependencies/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/curl/curl.h -------------------------------------------------------------------------------- /RW/dependencies/curl/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/curl/curlver.h -------------------------------------------------------------------------------- /RW/dependencies/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/curl/easy.h -------------------------------------------------------------------------------- /RW/dependencies/curl/libcurl_a.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/curl/libcurl_a.lib -------------------------------------------------------------------------------- /RW/dependencies/curl/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/curl/mprintf.h -------------------------------------------------------------------------------- /RW/dependencies/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/curl/multi.h -------------------------------------------------------------------------------- /RW/dependencies/curl/stdcheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/curl/stdcheaders.h -------------------------------------------------------------------------------- /RW/dependencies/curl/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/curl/system.h -------------------------------------------------------------------------------- /RW/dependencies/curl/typecheck-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/curl/typecheck-gcc.h -------------------------------------------------------------------------------- /RW/dependencies/curl/urlapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/curl/urlapi.h -------------------------------------------------------------------------------- /RW/dependencies/exception_handler/ExceptionHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/exception_handler/ExceptionHandler.cpp -------------------------------------------------------------------------------- /RW/dependencies/exception_handler/ExceptionHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/exception_handler/ExceptionHandler.hpp -------------------------------------------------------------------------------- /RW/dependencies/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/imgui/imconfig.h -------------------------------------------------------------------------------- /RW/dependencies/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/imgui/imgui.cpp -------------------------------------------------------------------------------- /RW/dependencies/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/imgui/imgui.h -------------------------------------------------------------------------------- /RW/dependencies/imgui/imgui.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/imgui/imgui.ini -------------------------------------------------------------------------------- /RW/dependencies/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /RW/dependencies/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /RW/dependencies/imgui/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/imgui/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /RW/dependencies/imgui/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/imgui/imgui_impl_dx11.h -------------------------------------------------------------------------------- /RW/dependencies/imgui/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/imgui/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /RW/dependencies/imgui/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/imgui/imgui_impl_dx9.h -------------------------------------------------------------------------------- /RW/dependencies/imgui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/imgui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /RW/dependencies/imgui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/imgui/imgui_impl_win32.h -------------------------------------------------------------------------------- /RW/dependencies/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/imgui/imgui_internal.h -------------------------------------------------------------------------------- /RW/dependencies/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /RW/dependencies/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /RW/dependencies/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /RW/dependencies/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /RW/dependencies/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /RW/dependencies/inst_size/InstructionSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/inst_size/InstructionSize.h -------------------------------------------------------------------------------- /RW/dependencies/json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/json/json.hpp -------------------------------------------------------------------------------- /RW/dependencies/oxorany/oxorany.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/oxorany/oxorany.cpp -------------------------------------------------------------------------------- /RW/dependencies/oxorany/oxorany.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dependencies/oxorany/oxorany.h -------------------------------------------------------------------------------- /RW/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/dllmain.cpp -------------------------------------------------------------------------------- /RW/features/aimbot/aimbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/features/aimbot/aimbot.cpp -------------------------------------------------------------------------------- /RW/features/aimbot/aimbot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/features/aimbot/aimbot.hpp -------------------------------------------------------------------------------- /RW/features/misc/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/features/misc/misc.cpp -------------------------------------------------------------------------------- /RW/features/misc/misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/features/misc/misc.hpp -------------------------------------------------------------------------------- /RW/features/visuals/visuals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/features/visuals/visuals.cpp -------------------------------------------------------------------------------- /RW/features/visuals/visuals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/features/visuals/visuals.hpp -------------------------------------------------------------------------------- /RW/games/arsenal/arsenal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/games/arsenal/arsenal.cpp -------------------------------------------------------------------------------- /RW/games/arsenal/arsenal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/games/arsenal/arsenal.hpp -------------------------------------------------------------------------------- /RW/games/bad_business/bad_business.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/games/bad_business/bad_business.cpp -------------------------------------------------------------------------------- /RW/games/bad_business/bad_business.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/games/bad_business/bad_business.hpp -------------------------------------------------------------------------------- /RW/games/base_game/base_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/games/base_game/base_game.cpp -------------------------------------------------------------------------------- /RW/games/base_game/base_game.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/games/base_game/base_game.hpp -------------------------------------------------------------------------------- /RW/games/front_lines/front_lines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/games/front_lines/front_lines.cpp -------------------------------------------------------------------------------- /RW/games/front_lines/front_lines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/games/front_lines/front_lines.hpp -------------------------------------------------------------------------------- /RW/games/games.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/games/games.cpp -------------------------------------------------------------------------------- /RW/games/games.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/games/games.hpp -------------------------------------------------------------------------------- /RW/games/phantom_forces/phantom_forces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/games/phantom_forces/phantom_forces.cpp -------------------------------------------------------------------------------- /RW/games/phantom_forces/phantom_forces.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/games/phantom_forces/phantom_forces.hpp -------------------------------------------------------------------------------- /RW/games/rush_point/rush_point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/games/rush_point/rush_point.cpp -------------------------------------------------------------------------------- /RW/games/rush_point/rush_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/games/rush_point/rush_point.hpp -------------------------------------------------------------------------------- /RW/math/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/math/math.cpp -------------------------------------------------------------------------------- /RW/math/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/math/math.hpp -------------------------------------------------------------------------------- /RW/renderer/menu/config/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/renderer/menu/config/config.cpp -------------------------------------------------------------------------------- /RW/renderer/menu/config/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/renderer/menu/config/config.hpp -------------------------------------------------------------------------------- /RW/renderer/menu/fonts/poppins.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/renderer/menu/fonts/poppins.hpp -------------------------------------------------------------------------------- /RW/renderer/menu/libs/imgui_tricks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/renderer/menu/libs/imgui_tricks.cpp -------------------------------------------------------------------------------- /RW/renderer/menu/libs/imgui_tricks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/renderer/menu/libs/imgui_tricks.hpp -------------------------------------------------------------------------------- /RW/renderer/menu/libs/keys.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/renderer/menu/libs/keys.hpp -------------------------------------------------------------------------------- /RW/renderer/menu/ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/renderer/menu/ui.cpp -------------------------------------------------------------------------------- /RW/renderer/menu/ui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/renderer/menu/ui.hpp -------------------------------------------------------------------------------- /RW/renderer/renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/renderer/renderer.cpp -------------------------------------------------------------------------------- /RW/renderer/renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/renderer/renderer.hpp -------------------------------------------------------------------------------- /RW/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/resource.h -------------------------------------------------------------------------------- /RW/roblox/roblox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/roblox/roblox.cpp -------------------------------------------------------------------------------- /RW/roblox/roblox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/roblox/roblox.hpp -------------------------------------------------------------------------------- /RW/task_scheduler/task_scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/task_scheduler/task_scheduler.cpp -------------------------------------------------------------------------------- /RW/task_scheduler/task_scheduler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RW/task_scheduler/task_scheduler.hpp -------------------------------------------------------------------------------- /RWB/RWB.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RWB/RWB.sln -------------------------------------------------------------------------------- /RWB/RWB/RWB.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RWB/RWB/RWB.vcxproj -------------------------------------------------------------------------------- /RWB/RWB/RWB.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RWB/RWB/RWB.vcxproj.filters -------------------------------------------------------------------------------- /RWB/RWB/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RWB/RWB/Resource.rc -------------------------------------------------------------------------------- /RWB/RWB/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RWB/RWB/dllmain.cpp -------------------------------------------------------------------------------- /RWB/RWB/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RWB/RWB/resource.h -------------------------------------------------------------------------------- /RWI/RWI/RWI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RWI/RWI/RWI.cpp -------------------------------------------------------------------------------- /RWI/RWI/RWI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RWI/RWI/RWI.vcxproj -------------------------------------------------------------------------------- /RWI/RWI/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RWI/RWI/Resource.rc -------------------------------------------------------------------------------- /RWI/RWI/dependencies/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RWI/RWI/dependencies/curl/curl.h -------------------------------------------------------------------------------- /RWI/RWI/dependencies/curl/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RWI/RWI/dependencies/curl/curlver.h -------------------------------------------------------------------------------- /RWI/RWI/dependencies/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RWI/RWI/dependencies/curl/easy.h -------------------------------------------------------------------------------- /RWI/RWI/dependencies/curl/libcurl_a.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RWI/RWI/dependencies/curl/libcurl_a.lib -------------------------------------------------------------------------------- /RWI/RWI/dependencies/curl/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RWI/RWI/dependencies/curl/mprintf.h -------------------------------------------------------------------------------- /RWI/RWI/dependencies/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RWI/RWI/dependencies/curl/multi.h -------------------------------------------------------------------------------- /RWI/RWI/dependencies/curl/stdcheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RWI/RWI/dependencies/curl/stdcheaders.h -------------------------------------------------------------------------------- /RWI/RWI/dependencies/curl/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RWI/RWI/dependencies/curl/system.h -------------------------------------------------------------------------------- /RWI/RWI/dependencies/curl/typecheck-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RWI/RWI/dependencies/curl/typecheck-gcc.h -------------------------------------------------------------------------------- /RWI/RWI/dependencies/curl/urlapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RWI/RWI/dependencies/curl/urlapi.h -------------------------------------------------------------------------------- /RWI/RWI/memory/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RWI/RWI/memory/memory.cpp -------------------------------------------------------------------------------- /RWI/RWI/memory/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RWI/RWI/memory/memory.hpp -------------------------------------------------------------------------------- /RWI/RWI/mmap/manual_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RWI/RWI/mmap/manual_map.cpp -------------------------------------------------------------------------------- /RWI/RWI/mmap/manual_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RWI/RWI/mmap/manual_map.hpp -------------------------------------------------------------------------------- /RWI/RWI/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiisDev/RoWare/HEAD/RWI/RWI/resource.h --------------------------------------------------------------------------------