소스 검색

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 파일 보기

@@ -161,15 +161,14 @@ export default class NESTile{


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

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

isEq(tile){

Loading…
취소
저장