1
0
mirror of https://github.com/exane/not-gwent-online synced 2024-10-31 10:36:53 +00:00
not-gwent-online/server/Npc.js

28 lines
443 B
JavaScript
Raw Normal View History

2015-06-10 16:12:52 +00:00
var Entity = require("./Entity");
var Npc = (function(){
var Npc = function(){
if(!(this instanceof Npc)){
return (new Npc());
}
Entity.call(this);
/**
* constructor here
*/
};
Npc.prototype = Object.create(Entity.prototype);
var r = Npc.prototype;
/**
* methods && properties here
* r.property = null;
* r.getProperty = function() {...}
*/
return Npc;
})();
module.exports = Npc;