├── .gitignore ├── README.md ├── SeaOfChoros.vcxproj ├── SeaOfChoros.vcxproj.filters ├── SeaOfChoros.vcxproj.user ├── cIcons.h ├── config.h ├── engine.cpp ├── engine.h ├── include ├── HookLib │ └── HookLib.h ├── ImGui │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_draw.cpp │ ├── imgui_impl_dx11.cpp │ ├── imgui_impl_dx11.h │ ├── imgui_impl_win32.cpp │ ├── imgui_impl_win32.h │ ├── imgui_internal.h │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h ├── UE4 │ ├── Array.h │ ├── Color.h │ ├── Math.h │ ├── Matrix.h │ ├── Quat.h │ ├── Rotator.h │ ├── SDK.cpp │ ├── SDK.h │ ├── Transform.cpp │ ├── Transform.h │ ├── UE4.cpp │ ├── UE4.h │ ├── Vector.h │ ├── Vector2D.h │ └── Vector4.h └── tslib │ ├── tslib.cpp │ └── tslib.h ├── logger.cpp ├── logger.h ├── main.cpp └── main.h /.gitignore: -------------------------------------------------------------------------------- 1 | x64/ 2 | lib/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/README.md -------------------------------------------------------------------------------- /SeaOfChoros.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/SeaOfChoros.vcxproj -------------------------------------------------------------------------------- /SeaOfChoros.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/SeaOfChoros.vcxproj.filters -------------------------------------------------------------------------------- /SeaOfChoros.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/SeaOfChoros.vcxproj.user -------------------------------------------------------------------------------- /cIcons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/cIcons.h -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/config.h -------------------------------------------------------------------------------- /engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/engine.cpp -------------------------------------------------------------------------------- /engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/engine.h -------------------------------------------------------------------------------- /include/HookLib/HookLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/include/HookLib/HookLib.h -------------------------------------------------------------------------------- /include/ImGui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/include/ImGui/imconfig.h -------------------------------------------------------------------------------- /include/ImGui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/include/ImGui/imgui.cpp -------------------------------------------------------------------------------- /include/ImGui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/include/ImGui/imgui.h -------------------------------------------------------------------------------- /include/ImGui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/include/ImGui/imgui_draw.cpp -------------------------------------------------------------------------------- /include/ImGui/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/include/ImGui/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /include/ImGui/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/include/ImGui/imgui_impl_dx11.h -------------------------------------------------------------------------------- /include/ImGui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/include/ImGui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /include/ImGui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/include/ImGui/imgui_impl_win32.h -------------------------------------------------------------------------------- /include/ImGui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/include/ImGui/imgui_internal.h -------------------------------------------------------------------------------- /include/ImGui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/include/ImGui/imgui_widgets.cpp -------------------------------------------------------------------------------- /include/ImGui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/include/ImGui/imstb_rectpack.h -------------------------------------------------------------------------------- /include/ImGui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/include/ImGui/imstb_textedit.h -------------------------------------------------------------------------------- /include/ImGui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/include/ImGui/imstb_truetype.h -------------------------------------------------------------------------------- /include/UE4/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/include/UE4/Array.h -------------------------------------------------------------------------------- /include/UE4/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/include/UE4/Color.h -------------------------------------------------------------------------------- /include/UE4/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/include/UE4/Math.h -------------------------------------------------------------------------------- /include/UE4/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/include/UE4/Matrix.h -------------------------------------------------------------------------------- /include/UE4/Quat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/include/UE4/Quat.h -------------------------------------------------------------------------------- /include/UE4/Rotator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/include/UE4/Rotator.h -------------------------------------------------------------------------------- /include/UE4/SDK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/include/UE4/SDK.cpp -------------------------------------------------------------------------------- /include/UE4/SDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/include/UE4/SDK.h -------------------------------------------------------------------------------- /include/UE4/Transform.cpp: -------------------------------------------------------------------------------- 1 | #include "Transform.h" 2 | 3 | -------------------------------------------------------------------------------- /include/UE4/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/include/UE4/Transform.h -------------------------------------------------------------------------------- /include/UE4/UE4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/include/UE4/UE4.cpp -------------------------------------------------------------------------------- /include/UE4/UE4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/include/UE4/UE4.h -------------------------------------------------------------------------------- /include/UE4/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/include/UE4/Vector.h -------------------------------------------------------------------------------- /include/UE4/Vector2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/include/UE4/Vector2D.h -------------------------------------------------------------------------------- /include/UE4/Vector4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/include/UE4/Vector4.h -------------------------------------------------------------------------------- /include/tslib/tslib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/include/tslib/tslib.cpp -------------------------------------------------------------------------------- /include/tslib/tslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/include/tslib/tslib.h -------------------------------------------------------------------------------- /logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/logger.cpp -------------------------------------------------------------------------------- /logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/logger.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/main.cpp -------------------------------------------------------------------------------- /main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxSylph/SeaOfChoros/HEAD/main.h --------------------------------------------------------------------------------