1
0
mirror of https://github.com/exane/not-gwent-online synced 2025-11-08 09:08:40 +00:00

package.json changes

This commit is contained in:
exane
2015-06-15 17:11:19 +02:00
parent 246c27f990
commit 6c709b855c
2 changed files with 0 additions and 36 deletions

View File

@@ -1,28 +0,0 @@
var Entity = (function(){
var Entity = function(){
if(!(this instanceof Entity)){
return (new Entity());
}
/**
* constructor here
*/
};
var r = Entity.prototype;
/**
* methods && properties here
* r.property = null;
* r.getProperty = function() {...}
*/
r._battleside;
r.setBattleside = function(b) {
this._battleside = b;
}
return Entity;
})();
module.exports = Entity;