game/_incl_data/class/Battle/Helper.php

11 lines
155 B
PHP
Raw Normal View History

2023-12-19 01:58:37 +00:00
<?php
namespace Battle;
class Helper
{
public static function getChanse(int $percent): bool
{
return mt_rand(0, 100) <= $percent;
}
}