A multiplayer top down deathmatch game. Made in 48 hours at Railscamp 11 on the Gold Coast.
Deathmatch requires Ruby 1.9.
If you're using bundler
bundle install
Otherwise, install dependencies manually with rubygems
gem install em-websocket
Start the server:
ruby deathmatch.rb
Serve up statics:
python -m SimpleHTTPServer
Open in a browser:
http://127.0.0.1:8000
You'll need guard and coffeescript:
gem install guard guard-coffeescript
Use guard to recompile coffeescript:
guard
By Dennis Hotson and Paul Annesley with help from Rich Healey, Josh Amos and Michael Morris.
MIT
Contributions are welcome. :-)
- Fork the project
- Create a feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Added some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request