This commit is contained in:
aozhiwei 2022-03-25 13:29:24 +08:00
parent bb6f073569
commit 7a949accd9
2 changed files with 7 additions and 0 deletions

View File

@ -33,6 +33,8 @@ class Battle(object):
['room_uuid', 0, '房间唯一id'],
['room_mode', 0, '房间模式 0:吃鸡模式 1:匹配赛模式'],
['hero_id', 0, '英雄id'],
['hero_uniid', 0, '英雄uniid'],
['hero_quality', 0, '英雄quality'],
['map_name', '', '地图名'],
['team_mode', 0, '队伍模式 0:单人 1组队'],
['game_time', 0, '游戏时间'],

View File

@ -35,4 +35,9 @@ class BattleController extends BaseAuthedController {
$this->_rspOk();
}
public function getBattleData()
{
error_log('getBattleData');
}
}