├── .gitignore ├── README.md ├── package.json ├── public ├── Player.js ├── index.html ├── sketch.js └── style.css └── server ├── Player.js └── server.js /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | node_modules/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeGarrigan/p5-multiplayer-game-starter/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeGarrigan/p5-multiplayer-game-starter/HEAD/package.json -------------------------------------------------------------------------------- /public/Player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeGarrigan/p5-multiplayer-game-starter/HEAD/public/Player.js -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeGarrigan/p5-multiplayer-game-starter/HEAD/public/index.html -------------------------------------------------------------------------------- /public/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeGarrigan/p5-multiplayer-game-starter/HEAD/public/sketch.js -------------------------------------------------------------------------------- /public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeGarrigan/p5-multiplayer-game-starter/HEAD/public/style.css -------------------------------------------------------------------------------- /server/Player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeGarrigan/p5-multiplayer-game-starter/HEAD/server/Player.js -------------------------------------------------------------------------------- /server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeGarrigan/p5-multiplayer-game-starter/HEAD/server/server.js --------------------------------------------------------------------------------