├── .gitignore ├── README.md ├── premake5.bat ├── premake5.exe ├── premake5.lua ├── resources ├── RadioWheelIV.ini └── pc │ └── textures │ ├── radiowheel.wtd │ ├── radiowheel_tbogt.wtd │ └── radiowheel_tlad.wtd ├── shaders └── blur.fxc └── source ├── Main.cpp ├── Resource.aps ├── Resource.h ├── Resource.rc └── Utility.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gennariarmando/iv-radiowheel/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gennariarmando/iv-radiowheel/HEAD/README.md -------------------------------------------------------------------------------- /premake5.bat: -------------------------------------------------------------------------------- 1 | premake5 vs2022 -------------------------------------------------------------------------------- /premake5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gennariarmando/iv-radiowheel/HEAD/premake5.exe -------------------------------------------------------------------------------- /premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gennariarmando/iv-radiowheel/HEAD/premake5.lua -------------------------------------------------------------------------------- /resources/RadioWheelIV.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gennariarmando/iv-radiowheel/HEAD/resources/RadioWheelIV.ini -------------------------------------------------------------------------------- /resources/pc/textures/radiowheel.wtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gennariarmando/iv-radiowheel/HEAD/resources/pc/textures/radiowheel.wtd -------------------------------------------------------------------------------- /resources/pc/textures/radiowheel_tbogt.wtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gennariarmando/iv-radiowheel/HEAD/resources/pc/textures/radiowheel_tbogt.wtd -------------------------------------------------------------------------------- /resources/pc/textures/radiowheel_tlad.wtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gennariarmando/iv-radiowheel/HEAD/resources/pc/textures/radiowheel_tlad.wtd -------------------------------------------------------------------------------- /shaders/blur.fxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gennariarmando/iv-radiowheel/HEAD/shaders/blur.fxc -------------------------------------------------------------------------------- /source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gennariarmando/iv-radiowheel/HEAD/source/Main.cpp -------------------------------------------------------------------------------- /source/Resource.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gennariarmando/iv-radiowheel/HEAD/source/Resource.aps -------------------------------------------------------------------------------- /source/Resource.h: -------------------------------------------------------------------------------- 1 | #define IDR_BLUR 101 2 | -------------------------------------------------------------------------------- /source/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gennariarmando/iv-radiowheel/HEAD/source/Resource.rc -------------------------------------------------------------------------------- /source/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gennariarmando/iv-radiowheel/HEAD/source/Utility.h --------------------------------------------------------------------------------