目录结构调整

This commit is contained in:
2026-02-04 23:47:45 +08:00
parent 6938c911c3
commit 6b22238c6e
8780 changed files with 15333 additions and 574 deletions

View File

@@ -0,0 +1,30 @@
Box = function(){//构造方法
this.state = -1; //方格状态
this.sp = -1; //精灵号
}
if(typeof(Box.prototype.create) == "undefined"){
Box.prototype.create = function(sp){//创建方格
};
}
if(typeof(Box.prototype.init) == "undefined"){
Box.prototype.init = function(){//初始化方格
};
}
if(typeof(Box.prototype.clear) == "undefined"){
Box.prototype.clear = function(){//消除方格
this.state = -1;
};
}
if(typeof(Box.prototype.change) == "undefined"){
Box.prototype.change = function(st){//更改方格
this.state = st;
};
}