├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── LICENSE ├── README.md ├── Sea Of Gods.sln ├── Sea Of Gods.vcxproj ├── Sea Of Gods.vcxproj.filters ├── Sea Of Gods.vcxproj.user ├── library ├── 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_tables.cpp │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h ├── Microsoft DirectX SDK │ ├── Include │ │ ├── D2D1.h │ │ ├── D2D1Helper.h │ │ ├── D2DBaseTypes.h │ │ ├── D2Derr.h │ │ ├── D3D10.h │ │ ├── D3D10_1.h │ │ ├── D3D10_1shader.h │ │ ├── D3D10effect.h │ │ ├── D3D10shader.h │ │ ├── D3D11.h │ │ ├── D3D11SDKLayers.h │ │ ├── D3D11Shader.h │ │ ├── D3DCSX.h │ │ ├── D3DX10.h │ │ ├── D3DX10core.h │ │ ├── D3DX10math.h │ │ ├── D3DX10math.inl │ │ ├── D3DX10mesh.h │ │ ├── D3DX10tex.h │ │ ├── D3DX11.h │ │ ├── D3DX11async.h │ │ ├── D3DX11core.h │ │ ├── D3DX11tex.h │ │ ├── D3DX_DXGIFormatConvert.inl │ │ ├── D3Dcommon.h │ │ ├── D3Dcompiler.h │ │ ├── DWrite.h │ │ ├── DXGI.h │ │ ├── DXGIFormat.h │ │ ├── DXGIType.h │ │ ├── Dcommon.h │ │ ├── DxErr.h │ │ ├── PIXPlugin.h │ │ ├── X3DAudio.h │ │ ├── XAPO.h │ │ ├── XAPOBase.h │ │ ├── XAPOFX.h │ │ ├── XAudio2.h │ │ ├── XAudio2fx.h │ │ ├── XDSP.h │ │ ├── XInput.h │ │ ├── audiodefs.h │ │ ├── comdecl.h │ │ ├── d3d10misc.h │ │ ├── d3d10sdklayers.h │ │ ├── d3d9.h │ │ ├── d3d9caps.h │ │ ├── d3d9types.h │ │ ├── d3dx10async.h │ │ ├── d3dx9.h │ │ ├── d3dx9anim.h │ │ ├── d3dx9core.h │ │ ├── d3dx9effect.h │ │ ├── d3dx9math.h │ │ ├── d3dx9math.inl │ │ ├── d3dx9mesh.h │ │ ├── d3dx9shader.h │ │ ├── d3dx9shape.h │ │ ├── d3dx9tex.h │ │ ├── d3dx9xof.h │ │ ├── dinput.h │ │ ├── dinputd.h │ │ ├── dsconf.h │ │ ├── dsetup.h │ │ ├── dsound.h │ │ ├── dxdiag.h │ │ ├── dxfile.h │ │ ├── dxsdkver.h │ │ ├── gameux.h │ │ ├── rmxfguid.h │ │ ├── rmxftmpl.h │ │ ├── rpcsal.h │ │ ├── xact3.h │ │ ├── xact3d3.h │ │ ├── xact3wb.h │ │ ├── xma2defs.h │ │ ├── xnamath.h │ │ ├── xnamathconvert.inl │ │ ├── xnamathmatrix.inl │ │ ├── xnamathmisc.inl │ │ └── xnamathvector.inl │ └── Lib │ │ ├── x64 │ │ ├── D3DCSX.lib │ │ ├── D3DCSXd.lib │ │ ├── DxErr.lib │ │ ├── X3DAudio.lib │ │ ├── XAPOFX.lib │ │ ├── XInput.lib │ │ ├── d2d1.lib │ │ ├── d3d10.lib │ │ ├── d3d10_1.lib │ │ ├── d3d11.lib │ │ ├── d3d9.lib │ │ ├── d3dcompiler.lib │ │ ├── d3dx10.lib │ │ ├── d3dx10d.lib │ │ ├── d3dx11.lib │ │ ├── d3dx11d.lib │ │ ├── d3dx9.lib │ │ ├── d3dx9d.lib │ │ ├── d3dxof.lib │ │ ├── dinput8.lib │ │ ├── dsound.lib │ │ ├── dwrite.lib │ │ ├── dxgi.lib │ │ ├── dxguid.lib │ │ ├── xapobase.lib │ │ └── xapobased.lib │ │ └── x86 │ │ ├── D3DCSX.lib │ │ ├── D3DCSXd.lib │ │ ├── DxErr.lib │ │ ├── X3DAudio.lib │ │ ├── XAPOFX.lib │ │ ├── XInput.lib │ │ ├── d2d1.lib │ │ ├── d3d10.lib │ │ ├── d3d10_1.lib │ │ ├── d3d11.lib │ │ ├── d3d9.lib │ │ ├── d3dcompiler.lib │ │ ├── d3dx10.lib │ │ ├── d3dx10d.lib │ │ ├── d3dx11.lib │ │ ├── d3dx11d.lib │ │ ├── d3dx9.lib │ │ ├── d3dx9d.lib │ │ ├── d3dxof.lib │ │ ├── dinput8.lib │ │ ├── dsetup.lib │ │ ├── dsound.lib │ │ ├── dwrite.lib │ │ ├── dxgi.lib │ │ ├── dxguid.lib │ │ ├── xapobase.lib │ │ └── xapobased.lib ├── minhook │ ├── DirectX11.h │ ├── Global.h │ ├── dll_resources │ │ ├── MinHook.def │ │ └── MinHook.rc │ ├── include │ │ └── MinHook.h │ └── src │ │ ├── buffer.c │ │ ├── buffer.h │ │ ├── hde │ │ ├── hde32.c │ │ ├── hde32.h │ │ ├── hde64.c │ │ ├── hde64.h │ │ ├── pstdint.h │ │ ├── table32.h │ │ └── table64.h │ │ ├── hook.c │ │ ├── trampoline.c │ │ └── trampoline.h ├── tslib │ ├── tslib.cpp │ └── tslib.h └── ue4 │ ├── Array.h │ ├── Color.h │ ├── Math.h │ ├── Matrix.h │ ├── Quat.h │ ├── Rotator.h │ ├── Transform.cpp │ ├── Transform.h │ ├── UE4.cpp │ ├── UE4.h │ ├── Vector.h │ ├── Vector2D.h │ └── Vector4.h ├── main ├── main.cpp └── main.h ├── sdk ├── SDK.cpp └── SDK.h └── utils ├── cIcons.h ├── config.h ├── engine.cpp ├── engine.h ├── logger.cpp └── logger.h /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [McDaived] -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/README.md -------------------------------------------------------------------------------- /Sea Of Gods.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/Sea Of Gods.sln -------------------------------------------------------------------------------- /Sea Of Gods.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/Sea Of Gods.vcxproj -------------------------------------------------------------------------------- /Sea Of Gods.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/Sea Of Gods.vcxproj.filters -------------------------------------------------------------------------------- /Sea Of Gods.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/Sea Of Gods.vcxproj.user -------------------------------------------------------------------------------- /library/ImGui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/ImGui/imconfig.h -------------------------------------------------------------------------------- /library/ImGui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/ImGui/imgui.cpp -------------------------------------------------------------------------------- /library/ImGui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/ImGui/imgui.h -------------------------------------------------------------------------------- /library/ImGui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/ImGui/imgui_draw.cpp -------------------------------------------------------------------------------- /library/ImGui/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/ImGui/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /library/ImGui/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/ImGui/imgui_impl_dx11.h -------------------------------------------------------------------------------- /library/ImGui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/ImGui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /library/ImGui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/ImGui/imgui_impl_win32.h -------------------------------------------------------------------------------- /library/ImGui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/ImGui/imgui_internal.h -------------------------------------------------------------------------------- /library/ImGui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/ImGui/imgui_tables.cpp -------------------------------------------------------------------------------- /library/ImGui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/ImGui/imgui_widgets.cpp -------------------------------------------------------------------------------- /library/ImGui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/ImGui/imstb_rectpack.h -------------------------------------------------------------------------------- /library/ImGui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/ImGui/imstb_textedit.h -------------------------------------------------------------------------------- /library/ImGui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/ImGui/imstb_truetype.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/D2D1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/D2D1.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/D2D1Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/D2D1Helper.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/D2DBaseTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/D2DBaseTypes.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/D2Derr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/D2Derr.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/D3D10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/D3D10.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/D3D10_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/D3D10_1.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/D3D10_1shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/D3D10_1shader.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/D3D10effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/D3D10effect.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/D3D10shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/D3D10shader.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/D3D11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/D3D11.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/D3D11SDKLayers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/D3D11SDKLayers.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/D3D11Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/D3D11Shader.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/D3DCSX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/D3DCSX.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/D3DX10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/D3DX10.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/D3DX10core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/D3DX10core.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/D3DX10math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/D3DX10math.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/D3DX10math.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/D3DX10math.inl -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/D3DX10mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/D3DX10mesh.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/D3DX10tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/D3DX10tex.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/D3DX11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/D3DX11.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/D3DX11async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/D3DX11async.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/D3DX11core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/D3DX11core.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/D3DX11tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/D3DX11tex.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/D3DX_DXGIFormatConvert.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/D3DX_DXGIFormatConvert.inl -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/D3Dcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/D3Dcommon.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/D3Dcompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/D3Dcompiler.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/DWrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/DWrite.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/DXGI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/DXGI.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/DXGIFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/DXGIFormat.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/DXGIType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/DXGIType.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/Dcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/Dcommon.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/DxErr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/DxErr.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/PIXPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/PIXPlugin.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/X3DAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/X3DAudio.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/XAPO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/XAPO.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/XAPOBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/XAPOBase.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/XAPOFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/XAPOFX.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/XAudio2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/XAudio2.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/XAudio2fx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/XAudio2fx.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/XDSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/XDSP.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/XInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/XInput.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/audiodefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/audiodefs.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/comdecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/comdecl.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/d3d10misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/d3d10misc.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/d3d10sdklayers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/d3d10sdklayers.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/d3d9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/d3d9.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/d3d9caps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/d3d9caps.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/d3d9types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/d3d9types.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/d3dx10async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/d3dx10async.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/d3dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/d3dx9.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/d3dx9anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/d3dx9anim.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/d3dx9core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/d3dx9core.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/d3dx9effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/d3dx9effect.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/d3dx9math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/d3dx9math.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/d3dx9math.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/d3dx9math.inl -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/d3dx9mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/d3dx9mesh.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/d3dx9shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/d3dx9shader.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/d3dx9shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/d3dx9shape.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/d3dx9tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/d3dx9tex.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/d3dx9xof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/d3dx9xof.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/dinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/dinput.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/dinputd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/dinputd.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/dsconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/dsconf.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/dsetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/dsetup.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/dsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/dsound.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/dxdiag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/dxdiag.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/dxfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/dxfile.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/dxsdkver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/dxsdkver.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/gameux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/gameux.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/rmxfguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/rmxfguid.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/rmxftmpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/rmxftmpl.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/rpcsal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/rpcsal.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/xact3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/xact3.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/xact3d3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/xact3d3.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/xact3wb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/xact3wb.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/xma2defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/xma2defs.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/xnamath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/xnamath.h -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/xnamathconvert.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/xnamathconvert.inl -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/xnamathmatrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/xnamathmatrix.inl -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/xnamathmisc.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/xnamathmisc.inl -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Include/xnamathvector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Include/xnamathvector.inl -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x64/D3DCSX.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x64/D3DCSX.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x64/D3DCSXd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x64/D3DCSXd.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x64/DxErr.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x64/DxErr.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x64/X3DAudio.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x64/X3DAudio.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x64/XAPOFX.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x64/XAPOFX.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x64/XInput.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x64/XInput.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x64/d2d1.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x64/d2d1.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x64/d3d10.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x64/d3d10.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x64/d3d10_1.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x64/d3d10_1.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x64/d3d11.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x64/d3d11.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x64/d3d9.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x64/d3d9.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x64/d3dcompiler.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x64/d3dcompiler.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x64/d3dx10.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x64/d3dx10.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x64/d3dx10d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x64/d3dx10d.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x64/d3dx11.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x64/d3dx11.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x64/d3dx11d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x64/d3dx11d.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x64/d3dx9.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x64/d3dx9.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x64/d3dx9d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x64/d3dx9d.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x64/d3dxof.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x64/d3dxof.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x64/dinput8.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x64/dinput8.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x64/dsound.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x64/dsound.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x64/dwrite.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x64/dwrite.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x64/dxgi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x64/dxgi.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x64/dxguid.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x64/dxguid.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x64/xapobase.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x64/xapobase.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x64/xapobased.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x64/xapobased.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x86/D3DCSX.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x86/D3DCSX.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x86/D3DCSXd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x86/D3DCSXd.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x86/DxErr.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x86/DxErr.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x86/X3DAudio.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x86/X3DAudio.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x86/XAPOFX.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x86/XAPOFX.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x86/XInput.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x86/XInput.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x86/d2d1.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x86/d2d1.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x86/d3d10.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x86/d3d10.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x86/d3d10_1.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x86/d3d10_1.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x86/d3d11.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x86/d3d11.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x86/d3d9.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x86/d3d9.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x86/d3dcompiler.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x86/d3dcompiler.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x86/d3dx10.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x86/d3dx10.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x86/d3dx10d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x86/d3dx10d.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x86/d3dx11.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x86/d3dx11.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x86/d3dx11d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x86/d3dx11d.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x86/d3dx9.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x86/d3dx9.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x86/d3dx9d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x86/d3dx9d.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x86/d3dxof.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x86/d3dxof.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x86/dinput8.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x86/dinput8.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x86/dsetup.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x86/dsetup.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x86/dsound.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x86/dsound.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x86/dwrite.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x86/dwrite.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x86/dxgi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x86/dxgi.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x86/dxguid.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x86/dxguid.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x86/xapobase.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x86/xapobase.lib -------------------------------------------------------------------------------- /library/Microsoft DirectX SDK/Lib/x86/xapobased.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/Microsoft DirectX SDK/Lib/x86/xapobased.lib -------------------------------------------------------------------------------- /library/minhook/DirectX11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/minhook/DirectX11.h -------------------------------------------------------------------------------- /library/minhook/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/minhook/Global.h -------------------------------------------------------------------------------- /library/minhook/dll_resources/MinHook.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/minhook/dll_resources/MinHook.def -------------------------------------------------------------------------------- /library/minhook/dll_resources/MinHook.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/minhook/dll_resources/MinHook.rc -------------------------------------------------------------------------------- /library/minhook/include/MinHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/minhook/include/MinHook.h -------------------------------------------------------------------------------- /library/minhook/src/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/minhook/src/buffer.c -------------------------------------------------------------------------------- /library/minhook/src/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/minhook/src/buffer.h -------------------------------------------------------------------------------- /library/minhook/src/hde/hde32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/minhook/src/hde/hde32.c -------------------------------------------------------------------------------- /library/minhook/src/hde/hde32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/minhook/src/hde/hde32.h -------------------------------------------------------------------------------- /library/minhook/src/hde/hde64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/minhook/src/hde/hde64.c -------------------------------------------------------------------------------- /library/minhook/src/hde/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/minhook/src/hde/hde64.h -------------------------------------------------------------------------------- /library/minhook/src/hde/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/minhook/src/hde/pstdint.h -------------------------------------------------------------------------------- /library/minhook/src/hde/table32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/minhook/src/hde/table32.h -------------------------------------------------------------------------------- /library/minhook/src/hde/table64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/minhook/src/hde/table64.h -------------------------------------------------------------------------------- /library/minhook/src/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/minhook/src/hook.c -------------------------------------------------------------------------------- /library/minhook/src/trampoline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/minhook/src/trampoline.c -------------------------------------------------------------------------------- /library/minhook/src/trampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/minhook/src/trampoline.h -------------------------------------------------------------------------------- /library/tslib/tslib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/tslib/tslib.cpp -------------------------------------------------------------------------------- /library/tslib/tslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/tslib/tslib.h -------------------------------------------------------------------------------- /library/ue4/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/ue4/Array.h -------------------------------------------------------------------------------- /library/ue4/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/ue4/Color.h -------------------------------------------------------------------------------- /library/ue4/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/ue4/Math.h -------------------------------------------------------------------------------- /library/ue4/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/ue4/Matrix.h -------------------------------------------------------------------------------- /library/ue4/Quat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/ue4/Quat.h -------------------------------------------------------------------------------- /library/ue4/Rotator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/ue4/Rotator.h -------------------------------------------------------------------------------- /library/ue4/Transform.cpp: -------------------------------------------------------------------------------- 1 | #include "Transform.h" 2 | 3 | -------------------------------------------------------------------------------- /library/ue4/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/ue4/Transform.h -------------------------------------------------------------------------------- /library/ue4/UE4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/ue4/UE4.cpp -------------------------------------------------------------------------------- /library/ue4/UE4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/ue4/UE4.h -------------------------------------------------------------------------------- /library/ue4/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/ue4/Vector.h -------------------------------------------------------------------------------- /library/ue4/Vector2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/ue4/Vector2D.h -------------------------------------------------------------------------------- /library/ue4/Vector4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/library/ue4/Vector4.h -------------------------------------------------------------------------------- /main/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/main/main.cpp -------------------------------------------------------------------------------- /main/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/main/main.h -------------------------------------------------------------------------------- /sdk/SDK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/sdk/SDK.cpp -------------------------------------------------------------------------------- /sdk/SDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/sdk/SDK.h -------------------------------------------------------------------------------- /utils/cIcons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/utils/cIcons.h -------------------------------------------------------------------------------- /utils/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/utils/config.h -------------------------------------------------------------------------------- /utils/engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/utils/engine.cpp -------------------------------------------------------------------------------- /utils/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/utils/engine.h -------------------------------------------------------------------------------- /utils/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/utils/logger.cpp -------------------------------------------------------------------------------- /utils/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McDaived/Sea-of-Gods/HEAD/utils/logger.h --------------------------------------------------------------------------------