annotate pytouhou/game/lasertype.py @ 274:f037bca24f2d

Partially implement lasers. “Launch animations”/“energy circles” are missing, aswell as collision and grazing.
author Thibaut Girka <thib@sitedethib.com>
date Sun, 05 Feb 2012 23:41:55 +0100
parents
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