├── .gitignore ├── Deeps.sln ├── Deeps ├── Deeps.h ├── Deeps.vcxproj ├── Deeps.vcxproj.filters ├── Defines.h ├── Exports.def ├── damage.cpp ├── main.cpp └── render.cpp ├── README.md └── release ├── plugins └── Deeps.dll └── resources └── deeps └── bar.tga /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relliko/Deeps/HEAD/.gitignore -------------------------------------------------------------------------------- /Deeps.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relliko/Deeps/HEAD/Deeps.sln -------------------------------------------------------------------------------- /Deeps/Deeps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relliko/Deeps/HEAD/Deeps/Deeps.h -------------------------------------------------------------------------------- /Deeps/Deeps.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relliko/Deeps/HEAD/Deeps/Deeps.vcxproj -------------------------------------------------------------------------------- /Deeps/Deeps.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relliko/Deeps/HEAD/Deeps/Deeps.vcxproj.filters -------------------------------------------------------------------------------- /Deeps/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relliko/Deeps/HEAD/Deeps/Defines.h -------------------------------------------------------------------------------- /Deeps/Exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relliko/Deeps/HEAD/Deeps/Exports.def -------------------------------------------------------------------------------- /Deeps/damage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relliko/Deeps/HEAD/Deeps/damage.cpp -------------------------------------------------------------------------------- /Deeps/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relliko/Deeps/HEAD/Deeps/main.cpp -------------------------------------------------------------------------------- /Deeps/render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relliko/Deeps/HEAD/Deeps/render.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relliko/Deeps/HEAD/README.md -------------------------------------------------------------------------------- /release/plugins/Deeps.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relliko/Deeps/HEAD/release/plugins/Deeps.dll -------------------------------------------------------------------------------- /release/resources/deeps/bar.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relliko/Deeps/HEAD/release/resources/deeps/bar.tga --------------------------------------------------------------------------------