game/lib/utils/game_math.dart

6 lines
84 B
Dart

class GameMath {
static int floor(double value) {
return value.floor();
}
}