22 lines
402 B
PHP
22 lines
402 B
PHP
<?php
|
|
|
|
namespace events;
|
|
|
|
class Bigwheel
|
|
{
|
|
|
|
public static function onWinPrize($grid1, $grid2)
|
|
{
|
|
myself()->_callServiceStatic('BigwheelService', 'onWinPrize', $grid1, $grid2);
|
|
}
|
|
|
|
public static function onBuyOk($gridId, $buyPrice)
|
|
{
|
|
myself()->_addTgLog('Bigwheel.buyOk', array(
|
|
'gridId' => $gridId,
|
|
'buyPrice' => $buyPrice
|
|
));
|
|
}
|
|
|
|
}
|