game2006api/webapp/events/Bigwheel.php
aozhiwei adbb0ea437 1
2024-08-22 11:38:22 +08:00

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
));
}
}