This commit is contained in:
2025-12-01 18:38:47 +09:00
parent 514b49f7d9
commit ae1ebdc6bf
27 changed files with 1965 additions and 597 deletions
+5
View File
@@ -0,0 +1,5 @@
class GameMath {
static int floor(double value) {
return value.floor();
}
}