1
0
Fork 0
webxoss-fixed/IO_Node.js
2016-10-23 13:56:45 +08:00

19 lines
No EOL
352 B
JavaScript

'use strict';
function IO_Socket (socket) {
this.socket = socket;
this.listener = null;
this.socket.on('gameMessage',function (data) {
// TODO:
// check data
if (this.listener) {
this.listener.call(null,data);
}
}.bind(this));
};
IO_Socket.prototype.send = function (data) {
this.socket.emit('gameMessage',data);
};
global.IO = IO;