├── GTAPI.h ├── HTTP └── Program.cs ├── Release ├── Descriptions.txt ├── config.json ├── corrupt.txt └── dialogs │ └── gazette.txt ├── bcrypt.cpp ├── bcrypt.h ├── enet server test.filters ├── enet server test.sln ├── enet server test.user ├── enet server test.vcxproj ├── enet server test.vcxproj.user ├── enet.lib ├── enet ├── callbacks.h ├── enet.h ├── list.h ├── protocol.h ├── time.h ├── types.h ├── unix.h ├── utility.h └── win32.h ├── enet64.lib ├── gamepacket.h ├── hash.h ├── json.hpp ├── main.cpp ├── player.h ├── server.h ├── stdafx.cpp ├── stdafx.h └── targetver.h /GTAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/GTAPI.h -------------------------------------------------------------------------------- /HTTP/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/HTTP/Program.cs -------------------------------------------------------------------------------- /Release/Descriptions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/Release/Descriptions.txt -------------------------------------------------------------------------------- /Release/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/Release/config.json -------------------------------------------------------------------------------- /Release/corrupt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/Release/corrupt.txt -------------------------------------------------------------------------------- /Release/dialogs/gazette.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/Release/dialogs/gazette.txt -------------------------------------------------------------------------------- /bcrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/bcrypt.cpp -------------------------------------------------------------------------------- /bcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/bcrypt.h -------------------------------------------------------------------------------- /enet server test.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/enet server test.filters -------------------------------------------------------------------------------- /enet server test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/enet server test.sln -------------------------------------------------------------------------------- /enet server test.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/enet server test.user -------------------------------------------------------------------------------- /enet server test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/enet server test.vcxproj -------------------------------------------------------------------------------- /enet server test.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/enet server test.vcxproj.user -------------------------------------------------------------------------------- /enet.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/enet.lib -------------------------------------------------------------------------------- /enet/callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/enet/callbacks.h -------------------------------------------------------------------------------- /enet/enet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/enet/enet.h -------------------------------------------------------------------------------- /enet/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/enet/list.h -------------------------------------------------------------------------------- /enet/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/enet/protocol.h -------------------------------------------------------------------------------- /enet/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/enet/time.h -------------------------------------------------------------------------------- /enet/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/enet/types.h -------------------------------------------------------------------------------- /enet/unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/enet/unix.h -------------------------------------------------------------------------------- /enet/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/enet/utility.h -------------------------------------------------------------------------------- /enet/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/enet/win32.h -------------------------------------------------------------------------------- /enet64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/enet64.lib -------------------------------------------------------------------------------- /gamepacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/gamepacket.h -------------------------------------------------------------------------------- /hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/hash.h -------------------------------------------------------------------------------- /json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/json.hpp -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/main.cpp -------------------------------------------------------------------------------- /player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/player.h -------------------------------------------------------------------------------- /server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/server.h -------------------------------------------------------------------------------- /stdafx.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include "stdafx.h" 3 | -------------------------------------------------------------------------------- /stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/stdafx.h -------------------------------------------------------------------------------- /targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaliGT/gtps-src-pack/HEAD/targetver.h --------------------------------------------------------------------------------