AgentVerse's picture
first commit
670a607
raw
history blame contribute delete
290 Bytes
/*
1. Destroy all chess
2. Fill chess
3. Break match3
*/
var Reset = function() {
// Destroy all chess
this.board.removeAllChess();
// Fill chess (with initial symbol map)
this.fill(this.initSymbolsMap);
// Break match3
this.breakMatch3();
}
export default Reset;