var server = function(){ this.name = null; this.sid = null; this.description = null; this.distance = null; this.uplink = null; this.events = {}; this.setEvents = function(events){ this.events = events; }; this.introduce = function(newName, newSid, newDescription, newDistance, newUplink){ this.name = newName; this.sid = newSid; this.description = newDescription; this.distance = newDistance; this.uplink = newUplink; }; this.setDescription = function(description){ this.description = description; this.events.doEvent('serverDesc', this); }; } module.exports = server;