A Twitch.tv viewer reward and games system.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
314 B

12 years ago
  1. var Sequence = require('./Sequence');
  2. var Util = require('util');
  3. var Packets = require('../packets');
  4. module.exports = Quit;
  5. Util.inherits(Quit, Sequence);
  6. function Quit(callback) {
  7. Sequence.call(this, callback);
  8. }
  9. Quit.prototype.start = function() {
  10. this.emit('packet', new Packets.ComQuitPacket);
  11. };