├── .gitignore ├── README.md ├── premake5.bat ├── premake5.exe ├── premake5.lua ├── resources └── pc │ └── textures │ └── hitmarker.wtd └── source ├── Main.cpp └── Utility.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gennariarmando/iv-hitmarker/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gennariarmando/iv-hitmarker/HEAD/README.md -------------------------------------------------------------------------------- /premake5.bat: -------------------------------------------------------------------------------- 1 | premake5 vs2022 -------------------------------------------------------------------------------- /premake5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gennariarmando/iv-hitmarker/HEAD/premake5.exe -------------------------------------------------------------------------------- /premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gennariarmando/iv-hitmarker/HEAD/premake5.lua -------------------------------------------------------------------------------- /resources/pc/textures/hitmarker.wtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gennariarmando/iv-hitmarker/HEAD/resources/pc/textures/hitmarker.wtd -------------------------------------------------------------------------------- /source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gennariarmando/iv-hitmarker/HEAD/source/Main.cpp -------------------------------------------------------------------------------- /source/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gennariarmando/iv-hitmarker/HEAD/source/Utility.h --------------------------------------------------------------------------------