Mercurial > touhou
comparison pytouhou/game/game.py @ 49:cbe1cb50f2fd
Refactor ECLRunner/EnemyManager so that all VM stuff goes to ECLRunner
author | Thibaut Girka <thib@sitedethib.com> |
---|---|
date | Mon, 22 Aug 2011 19:23:00 +0200 |
parents | |
children | 811cefefb5c8 |
comparison
equal
deleted
inserted
replaced
48:8353c33d53d4 | 49:cbe1cb50f2fd |
---|---|
1 class GameState(object): | |
2 __slots__ = ('players', 'rank', 'difficulty', 'frame', 'stage', 'boss') | |
3 def __init__(self, players, stage, rank, difficulty): | |
4 self.stage = stage | |
5 self.players = players | |
6 self.rank = rank | |
7 self.difficulty = difficulty | |
8 self.boss = None | |
9 self.frame = 0 |