improving transition - config tool for oregyen :)
This commit is contained in:
0
game/__init__.py
Normal file
0
game/__init__.py
Normal file
17
game/battle.py
Normal file
17
game/battle.py
Normal file
@@ -0,0 +1,17 @@
|
||||
"""
|
||||
Represents a battle instance.
|
||||
|
||||
todo: finding battles. factory for missions, skirmishes?
|
||||
"""
|
||||
|
||||
class Battle(object):
|
||||
__slots__ = ['players',
|
||||
'teams',
|
||||
'time_start',
|
||||
'time_end',]
|
||||
def __init__(self, parent=None):
|
||||
# parent is a log-session usually
|
||||
pass
|
||||
|
||||
|
||||
|
||||
0
game/mission.py
Normal file
0
game/mission.py
Normal file
0
game/skirmish.py
Normal file
0
game/skirmish.py
Normal file
Reference in New Issue
Block a user