├── .gitignore ├── LICENSE ├── README.md ├── game ├── index.html ├── package.json ├── server.js └── static │ ├── client │ ├── controller.js │ ├── game.css │ ├── pixi │ │ ├── pixi.min.js │ │ └── pixi.min.js.map │ ├── sprites │ │ ├── _.htaccess │ │ ├── brick.png │ │ ├── bullet.png │ │ ├── dead.png │ │ ├── doublePistols.png │ │ ├── edge.png │ │ ├── floor.png │ │ ├── gatling.png │ │ ├── grass.png │ │ ├── healthPack.png │ │ ├── lava.png │ │ ├── pistol.png │ │ ├── player.png │ │ ├── revolver.png │ │ ├── rifle.png │ │ ├── sand.png │ │ ├── smg.png │ │ └── water.png │ └── view.js │ └── server │ └── Model.js ├── help.html ├── img ├── mouse.png └── wasd.jpg ├── index.html ├── menu.css └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- 1 | /game/node_modules 2 | screenshot.png 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/README.md -------------------------------------------------------------------------------- /game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/game/index.html -------------------------------------------------------------------------------- /game/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/game/package.json -------------------------------------------------------------------------------- /game/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/game/server.js -------------------------------------------------------------------------------- /game/static/client/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/game/static/client/controller.js -------------------------------------------------------------------------------- /game/static/client/game.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/game/static/client/game.css -------------------------------------------------------------------------------- /game/static/client/pixi/pixi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/game/static/client/pixi/pixi.min.js -------------------------------------------------------------------------------- /game/static/client/pixi/pixi.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/game/static/client/pixi/pixi.min.js.map -------------------------------------------------------------------------------- /game/static/client/sprites/_.htaccess: -------------------------------------------------------------------------------- 1 | Options +Indexes -------------------------------------------------------------------------------- /game/static/client/sprites/brick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/game/static/client/sprites/brick.png -------------------------------------------------------------------------------- /game/static/client/sprites/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/game/static/client/sprites/bullet.png -------------------------------------------------------------------------------- /game/static/client/sprites/dead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/game/static/client/sprites/dead.png -------------------------------------------------------------------------------- /game/static/client/sprites/doublePistols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/game/static/client/sprites/doublePistols.png -------------------------------------------------------------------------------- /game/static/client/sprites/edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/game/static/client/sprites/edge.png -------------------------------------------------------------------------------- /game/static/client/sprites/floor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/game/static/client/sprites/floor.png -------------------------------------------------------------------------------- /game/static/client/sprites/gatling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/game/static/client/sprites/gatling.png -------------------------------------------------------------------------------- /game/static/client/sprites/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/game/static/client/sprites/grass.png -------------------------------------------------------------------------------- /game/static/client/sprites/healthPack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/game/static/client/sprites/healthPack.png -------------------------------------------------------------------------------- /game/static/client/sprites/lava.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/game/static/client/sprites/lava.png -------------------------------------------------------------------------------- /game/static/client/sprites/pistol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/game/static/client/sprites/pistol.png -------------------------------------------------------------------------------- /game/static/client/sprites/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/game/static/client/sprites/player.png -------------------------------------------------------------------------------- /game/static/client/sprites/revolver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/game/static/client/sprites/revolver.png -------------------------------------------------------------------------------- /game/static/client/sprites/rifle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/game/static/client/sprites/rifle.png -------------------------------------------------------------------------------- /game/static/client/sprites/sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/game/static/client/sprites/sand.png -------------------------------------------------------------------------------- /game/static/client/sprites/smg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/game/static/client/sprites/smg.png -------------------------------------------------------------------------------- /game/static/client/sprites/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/game/static/client/sprites/water.png -------------------------------------------------------------------------------- /game/static/client/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/game/static/client/view.js -------------------------------------------------------------------------------- /game/static/server/Model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/game/static/server/Model.js -------------------------------------------------------------------------------- /help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/help.html -------------------------------------------------------------------------------- /img/mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/img/mouse.png -------------------------------------------------------------------------------- /img/wasd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/img/wasd.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/index.html -------------------------------------------------------------------------------- /menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/menu.css -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grypesc/getRickRolled/HEAD/screenshot.png --------------------------------------------------------------------------------