improving transition - config tool for oregyen :)

This commit is contained in:
2014-05-26 17:03:11 +02:00
parent 3ed80d40b2
commit d0ce5ef086
18 changed files with 1063 additions and 340 deletions

0
game/__init__.py Normal file
View File

17
game/battle.py Normal file
View 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
View File

0
game/skirmish.py Normal file
View File