game2005api/doc/NGunController.py
2021-11-17 15:55:16 +08:00

60 lines
1.4 KiB
Python

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