game2006api/webapp/events/Bigwheel.php
aozhiwei 716f7fbb8c 1
2024-08-02 18:50:09 +08:00

17 lines
329 B
PHP

<?php
namespace events;
class Bigwheel
{
public static function onWinBigPrize($data)
{
//触发(调用)对应对该事件感兴趣的模块
//myself()->_callServiceStatic('A', 'f1', $battleData);
//myself()->_callServiceStatic('B', 'f1', $battleData);
echo json_encode($data);
}
}