123456789101112131415161718192021222324252627 |
- /*module.exports.introduce = introduce;
- module.exports.getSid = function(){ return sid; };
- module.exports.getName = function(){ return name; };
- module.exports.getDescription = function(){ return description; };
- module.exports.getDistance = function(){ return distance; };
- module.exports.getUplink = function(){ return uplink; };
- module.exports.isServer = true;
- module.exports.isUser = false;*/
- var server = function(){
- this.name = null;
- this.sid = null;
- this.description = null;
- this.distance = null;
- this.uplink = null;
- this.introduce = function(newName, newSid, newDescription, newDistance, newUplink){
- this.name = newName;
- this.sid = newSid;
- this.description = newDescription;
- this.distance = newDistance;
- this.uplink = newUplink;
- }
- }
- module.exports = server;
|