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:
@@ -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;
|
||||
Reference in New Issue
Block a user