コード例 #1
0
 def __init__(self, _id, name):
     customActivity.__init__(self, _id, name)
     self.list = [
         101,
         102,
         103,
     ]
コード例 #2
0
ファイル: buddy.py プロジェクト: hw233/GameServer-Python
	def __init__(self, _id, name):
		customActivity.__init__(self, _id, name)
		self.freeBuddyList = {}
コード例 #3
0
 def __init__(self, _id, name):
     customActivity.__init__(self, _id, name)
     self.state = 0  # 活动状态, 0.已结束  1.进行中
     self.teamInfoList = {}  # 活动队伍信息列表
コード例 #4
0
ファイル: race.py プロジェクト: hw233/GameServer-Python
	def __init__(self, _id, name):
		customActivity.__init__(self, _id, name)
		self.state = 0 # 活动状态, 0.已结束  1.进行中
		self.raceInfoList = {} # 竞技信息列表
		self.orderList = [] # 排序列表
コード例 #5
0
ファイル: escort.py プロジェクト: hw233/GameServer-Python
	def __init__(self, _id, name):
		customActivity.__init__(self, _id, name)