Start to add VCard class.
This commit is contained in:
parent
e0020298ab
commit
23aaa9e284
17
game/game.js
17
game/game.js
|
@ -30297,6 +30297,9 @@
|
||||||
return ['c','d'].contains(get.position(this));
|
return ['c','d'].contains(get.position(this));
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
VCard:class{
|
||||||
|
constructor(){}
|
||||||
|
},
|
||||||
Button:class extends HTMLDivElement{
|
Button:class extends HTMLDivElement{
|
||||||
/**
|
/**
|
||||||
* @param {{}} item
|
* @param {{}} item
|
||||||
|
@ -58518,15 +58521,11 @@
|
||||||
if(isPosition) return 'divposition';
|
if(isPosition) return 'divposition';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(get.objtype(obj)=='div'){
|
if(obj instanceof lib.element.Button) return 'button';
|
||||||
if(obj.classList.contains('button')) return 'button';
|
if(obj instanceof lib.element.Card) return 'card';
|
||||||
if(obj.classList.contains('card')) return 'card';
|
if(obj instanceof lib.element.Player) return 'player';
|
||||||
if(obj.classList.contains('player')) return 'player';
|
if(obj instanceof lib.element.Dialog) return 'dialog';
|
||||||
if(obj.classList.contains('dialog')) return 'dialog';
|
|
||||||
}
|
|
||||||
if(get.is.object(obj)){
|
|
||||||
if(obj instanceof lib.element.Event) return 'event';
|
if(obj instanceof lib.element.Event) return 'event';
|
||||||
}
|
|
||||||
},
|
},
|
||||||
equipNum:card=>{
|
equipNum:card=>{
|
||||||
if(get.type(card)=='equip'){
|
if(get.type(card)=='equip'){
|
||||||
|
@ -61513,6 +61512,8 @@
|
||||||
setAllPropertiesEnumerable(lib.element.Event.prototype);
|
setAllPropertiesEnumerable(lib.element.Event.prototype);
|
||||||
setAllPropertiesEnumerable(lib.element.Dialog.prototype);
|
setAllPropertiesEnumerable(lib.element.Dialog.prototype);
|
||||||
setAllPropertiesEnumerable(lib.element.Control.prototype);
|
setAllPropertiesEnumerable(lib.element.Control.prototype);
|
||||||
|
setAllPropertiesEnumerable(lib.element.Client.prototype);
|
||||||
|
setAllPropertiesEnumerable(lib.element.NodeWS.prototype);
|
||||||
if('__core-js_shared__' in window) lib.init.init();
|
if('__core-js_shared__' in window) lib.init.init();
|
||||||
else{
|
else{
|
||||||
const coreJSBundle=document.createElement('script');
|
const coreJSBundle=document.createElement('script');
|
||||||
|
|
Loading…
Reference in New Issue