├── .gitignore ├── LICENSE ├── README.md ├── client.cpp ├── client.hpp ├── command.hpp ├── fragment_shader.glsl ├── keyboard.hpp ├── makefile ├── mask.obj ├── misc.hpp ├── network.hpp ├── player.hpp ├── server.cpp ├── server.hpp ├── ui.hpp ├── ui_sdl.hpp ├── ui_sdl_gl.hpp ├── vertex_shader.glsl └── world.hpp /.gitignore: -------------------------------------------------------------------------------- 1 | client 2 | server -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinarnesson/game-networking/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinarnesson/game-networking/HEAD/README.md -------------------------------------------------------------------------------- /client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinarnesson/game-networking/HEAD/client.cpp -------------------------------------------------------------------------------- /client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinarnesson/game-networking/HEAD/client.hpp -------------------------------------------------------------------------------- /command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinarnesson/game-networking/HEAD/command.hpp -------------------------------------------------------------------------------- /fragment_shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinarnesson/game-networking/HEAD/fragment_shader.glsl -------------------------------------------------------------------------------- /keyboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinarnesson/game-networking/HEAD/keyboard.hpp -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinarnesson/game-networking/HEAD/makefile -------------------------------------------------------------------------------- /mask.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinarnesson/game-networking/HEAD/mask.obj -------------------------------------------------------------------------------- /misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinarnesson/game-networking/HEAD/misc.hpp -------------------------------------------------------------------------------- /network.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinarnesson/game-networking/HEAD/network.hpp -------------------------------------------------------------------------------- /player.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinarnesson/game-networking/HEAD/player.hpp -------------------------------------------------------------------------------- /server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinarnesson/game-networking/HEAD/server.cpp -------------------------------------------------------------------------------- /server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinarnesson/game-networking/HEAD/server.hpp -------------------------------------------------------------------------------- /ui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinarnesson/game-networking/HEAD/ui.hpp -------------------------------------------------------------------------------- /ui_sdl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinarnesson/game-networking/HEAD/ui_sdl.hpp -------------------------------------------------------------------------------- /ui_sdl_gl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinarnesson/game-networking/HEAD/ui_sdl_gl.hpp -------------------------------------------------------------------------------- /vertex_shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinarnesson/game-networking/HEAD/vertex_shader.glsl -------------------------------------------------------------------------------- /world.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinarnesson/game-networking/HEAD/world.hpp --------------------------------------------------------------------------------