game2005api/doc/NPlayerController.py
2021-11-17 16:18:36 +08:00

32 lines
751 B
Python

# -*- coding: utf-8 -*-
import _common
class NPlayerController(object):
def __init__(self):
self.apis = [
{
'desc': 'getGunInfo',
'group': 'NPlayerController',
'url': 'webapp/index.php?c=NPlayerController&a=getGunInfo',
'params': [
_common.ReqHead(),
],
'response': [
_common.RspHead(),
]
},
{
'desc': 'getPlayerLv',
'group': 'NPlayerController',
'url': 'webapp/index.php?c=NPlayerController&a=getPlayerLv',
'params': [
_common.ReqHead(),
],
'response': [
_common.RspHead(),
]
},
]