修改弹框

This commit is contained in:
zyronon
2023-08-13 22:37:20 +08:00
parent 5d281c8100
commit 7532e8cd31
2 changed files with 33 additions and 120 deletions

View File

@@ -1,3 +1,3 @@
export function getRandom(a: number, b: number) {
export function getRandom(a: number, b: number): number {
return Math.random() * (b - a) + a;
}