├── .editorconfig ├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── extra ├── l4dtoolz.txt └── l4dtoolz.vdf ├── pushbuild.txt ├── src ├── gamedata.cpp ├── gamedata.h ├── l4dtoolz.cpp ├── l4dtoolz.h ├── memorypatch.cpp ├── memorypatch.h ├── memutil.cpp └── memutil.h └── xmake.lua /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdxx/l4dtoolz/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdxx/l4dtoolz/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdxx/l4dtoolz/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdxx/l4dtoolz/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdxx/l4dtoolz/HEAD/README.md -------------------------------------------------------------------------------- /extra/l4dtoolz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdxx/l4dtoolz/HEAD/extra/l4dtoolz.txt -------------------------------------------------------------------------------- /extra/l4dtoolz.vdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdxx/l4dtoolz/HEAD/extra/l4dtoolz.vdf -------------------------------------------------------------------------------- /pushbuild.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 11 -------------------------------------------------------------------------------- /src/gamedata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdxx/l4dtoolz/HEAD/src/gamedata.cpp -------------------------------------------------------------------------------- /src/gamedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdxx/l4dtoolz/HEAD/src/gamedata.h -------------------------------------------------------------------------------- /src/l4dtoolz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdxx/l4dtoolz/HEAD/src/l4dtoolz.cpp -------------------------------------------------------------------------------- /src/l4dtoolz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdxx/l4dtoolz/HEAD/src/l4dtoolz.h -------------------------------------------------------------------------------- /src/memorypatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdxx/l4dtoolz/HEAD/src/memorypatch.cpp -------------------------------------------------------------------------------- /src/memorypatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdxx/l4dtoolz/HEAD/src/memorypatch.h -------------------------------------------------------------------------------- /src/memutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdxx/l4dtoolz/HEAD/src/memutil.cpp -------------------------------------------------------------------------------- /src/memutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdxx/l4dtoolz/HEAD/src/memutil.h -------------------------------------------------------------------------------- /xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdxx/l4dtoolz/HEAD/xmake.lua --------------------------------------------------------------------------------