浏览代码

Small tweak to NESTile.copy() and NESTile.clone()

dev-tmpl
Bryan Miller 6 年前
父节点
当前提交
dc3397b4e8
共有 1 个文件被更改,包括 2 次插入3 次删除
  1. +2
    -3
      app/js/models/NESTile.js

+ 2
- 3
app/js/models/NESTile.js 查看文件





clone(){ clone(){
var t = new NESTile();
t.base64 = this.base64;
return t;
return (new NESTile()).copy(this);
} }


copy(t){ copy(t){
if (!(t instanceof NESTile)) if (!(t instanceof NESTile))
throw new TypeError("Expected NESTile object."); throw new TypeError("Expected NESTile object.");
this.__data.set(t.__data); this.__data.set(t.__data);
return this;
} }


isEq(tile){ isEq(tile){

正在加载...
取消
保存