annotate pytouhou/game/lasertype.py @ 276:754ff6452d7e

Fix spellcard number 0. Spellcard number 0 was evaluated as False in truth checks. Now, the spellcard is a tuple, with (number, name) and will always evaluate as True.
author Thibaut Girka <thib@sitedethib.com>
date Sun, 05 Feb 2012 23:45:41 +0100
parents f037bca24f2d
children e04c3e1957c8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
274
f037bca24f2d Partially implement lasers.
Thibaut Girka <thib@sitedethib.com>
parents:
diff changeset
1 class LaserType(object):
f037bca24f2d Partially implement lasers.
Thibaut Girka <thib@sitedethib.com>
parents:
diff changeset
2 def __init__(self, anm_wrapper, anim_index):
f037bca24f2d Partially implement lasers.
Thibaut Girka <thib@sitedethib.com>
parents:
diff changeset
3 self.anm_wrapper = anm_wrapper
f037bca24f2d Partially implement lasers.
Thibaut Girka <thib@sitedethib.com>
parents:
diff changeset
4 self.anim_index = anim_index