First Dice game; 2048 for mobile partialy; Shadows and custom background in rock paper scissors

This commit is contained in:
2024-08-09 00:05:18 +02:00
parent dc5bc86832
commit 5664a525db
19 changed files with 227 additions and 14 deletions

View File

@@ -186,4 +186,24 @@ function hasEmptyTile() {
}
}
return false;
}
function left(){
slideLeft();
setTwo();
}
function up(){
slideUp();
setTwo();
}
function down(){
slideDown();
setTwo();
}
function right(){
slideRight();
setTwo();
}