18 lines
380 B
PHP
18 lines
380 B
PHP
<?php
|
|
|
|
namespace events;
|
|
|
|
class Bigwheel
|
|
{
|
|
|
|
public static function onWinPrize($grid1, $grid2, $drop1, $drop2)
|
|
{
|
|
myself()->_callServiceStatic('BigwheelService', 'onWinPrize',
|
|
$grid1,
|
|
$grid2,
|
|
$drop1,
|
|
$drop2);
|
|
}
|
|
|
|
}
|