├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── feature_request.md │ ├── report-working-game.yml │ └── request-for-game-support.yml ├── img │ ├── disc.png │ ├── gog.png │ └── steam.png └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── README.md ├── dllmain.c ├── include ├── dinput8_dll.h ├── dinput_dll.h ├── dsound_dll.h ├── game_aowht.h ├── game_bf2142.h ├── game_bfme2.h ├── game_blood2.h ├── game_bond.h ├── game_cmr5.h ├── game_cry.h ├── game_cry2.h ├── game_dh2k.h ├── game_dmntn.h ├── game_fear.h ├── game_fsw.h ├── game_go.h ├── game_gt.h ├── game_halo.h ├── game_hd2.h ├── game_mtg.h ├── game_mua.h ├── game_mvau.h ├── game_nolf.h ├── game_pk.h ├── game_rof.h ├── game_sacrifice.h ├── game_sam.h ├── game_sof2.h ├── game_sr2.h ├── game_sta2.h ├── game_stbc.h ├── game_stlegacy.h ├── game_swrc.h ├── game_t3.h ├── game_thug2.h ├── game_ts.h ├── game_ut3.h ├── game_vc2.h ├── game_worldshift.h ├── game_xml2.h ├── global.h ├── picoupnp.h ├── shared.h ├── version_dll.h └── winmm_dll.h └── premake5.lua /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/report-working-game.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/.github/ISSUE_TEMPLATE/report-working-game.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/request-for-game-support.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/.github/ISSUE_TEMPLATE/request-for-game-support.yml -------------------------------------------------------------------------------- /.github/img/disc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/.github/img/disc.png -------------------------------------------------------------------------------- /.github/img/gog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/.github/img/gog.png -------------------------------------------------------------------------------- /.github/img/steam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/.github/img/steam.png -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/README.md -------------------------------------------------------------------------------- /dllmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/dllmain.c -------------------------------------------------------------------------------- /include/dinput8_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/dinput8_dll.h -------------------------------------------------------------------------------- /include/dinput_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/dinput_dll.h -------------------------------------------------------------------------------- /include/dsound_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/dsound_dll.h -------------------------------------------------------------------------------- /include/game_aowht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_aowht.h -------------------------------------------------------------------------------- /include/game_bf2142.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_bf2142.h -------------------------------------------------------------------------------- /include/game_bfme2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_bfme2.h -------------------------------------------------------------------------------- /include/game_blood2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_blood2.h -------------------------------------------------------------------------------- /include/game_bond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_bond.h -------------------------------------------------------------------------------- /include/game_cmr5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_cmr5.h -------------------------------------------------------------------------------- /include/game_cry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_cry.h -------------------------------------------------------------------------------- /include/game_cry2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_cry2.h -------------------------------------------------------------------------------- /include/game_dh2k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_dh2k.h -------------------------------------------------------------------------------- /include/game_dmntn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_dmntn.h -------------------------------------------------------------------------------- /include/game_fear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_fear.h -------------------------------------------------------------------------------- /include/game_fsw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_fsw.h -------------------------------------------------------------------------------- /include/game_go.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_go.h -------------------------------------------------------------------------------- /include/game_gt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_gt.h -------------------------------------------------------------------------------- /include/game_halo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_halo.h -------------------------------------------------------------------------------- /include/game_hd2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_hd2.h -------------------------------------------------------------------------------- /include/game_mtg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_mtg.h -------------------------------------------------------------------------------- /include/game_mua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_mua.h -------------------------------------------------------------------------------- /include/game_mvau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_mvau.h -------------------------------------------------------------------------------- /include/game_nolf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_nolf.h -------------------------------------------------------------------------------- /include/game_pk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_pk.h -------------------------------------------------------------------------------- /include/game_rof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_rof.h -------------------------------------------------------------------------------- /include/game_sacrifice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_sacrifice.h -------------------------------------------------------------------------------- /include/game_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_sam.h -------------------------------------------------------------------------------- /include/game_sof2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_sof2.h -------------------------------------------------------------------------------- /include/game_sr2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_sr2.h -------------------------------------------------------------------------------- /include/game_sta2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_sta2.h -------------------------------------------------------------------------------- /include/game_stbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_stbc.h -------------------------------------------------------------------------------- /include/game_stlegacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_stlegacy.h -------------------------------------------------------------------------------- /include/game_swrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_swrc.h -------------------------------------------------------------------------------- /include/game_t3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_t3.h -------------------------------------------------------------------------------- /include/game_thug2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_thug2.h -------------------------------------------------------------------------------- /include/game_ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_ts.h -------------------------------------------------------------------------------- /include/game_ut3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_ut3.h -------------------------------------------------------------------------------- /include/game_vc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_vc2.h -------------------------------------------------------------------------------- /include/game_worldshift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_worldshift.h -------------------------------------------------------------------------------- /include/game_xml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/game_xml2.h -------------------------------------------------------------------------------- /include/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/global.h -------------------------------------------------------------------------------- /include/picoupnp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/picoupnp.h -------------------------------------------------------------------------------- /include/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/shared.h -------------------------------------------------------------------------------- /include/version_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/version_dll.h -------------------------------------------------------------------------------- /include/winmm_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/include/winmm_dll.h -------------------------------------------------------------------------------- /premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzz1/openspy-client/HEAD/premake5.lua --------------------------------------------------------------------------------