mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 19:34:47 +00:00
11 lines
157 B
TypeScript
11 lines
157 B
TypeScript
|
|
||
|
export default class NumberTools {
|
||
|
|
||
|
//随机
|
||
|
public GetRank(min, max) {
|
||
|
return Math.round(Math.random() * (max - min)) + min;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|