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.

14 lines
315 B

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