Mercurial > touhou
diff pytouhou/game/bullettype.py @ 590:e15672733c93
Switch to Python 3.x instead of 2.7.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Tue, 30 Sep 2014 17:14:24 +0200 |
parents | 8038f1957b71 |
children | d1f0bb0b7a17 |
line wrap: on
line diff
--- a/pytouhou/game/bullettype.py +++ b/pytouhou/game/bullettype.py @@ -14,6 +14,6 @@ class BulletType(object): self.launch_anim8_index = launch_anim8_index self.hitbox_size = hitbox_size assert 3 == len(launch_anim_penalties) - for i in xrange(3): + for i in range(3): self.launch_anim_penalties[i] = launch_anim_penalties[i] self.launch_anim_offsets = launch_anim_offsets