11 lines
155 B
PHP
Raw Permalink Normal View History

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