initial commit

This commit is contained in:
Michael Morrison 2013-07-10 05:02:48 -05:00
commit 8552d0674f
14 changed files with 907 additions and 0 deletions

8
protocols/quake3.js Normal file
View file

@ -0,0 +1,8 @@
module.exports = require('./quake2').extend({
init: function() {
this._super();
this.port = 27960;
this.sendHeader = 'getstatus';
this.responseHeader = 'statusResponse';
}
});