Mercurial > touhou
diff pytouhou/game/sprite.py @ 97:ac2e5e1c2c3c
Refactor \o/
author | Thibaut Girka <thib@sitedethib.com> |
---|---|
date | Sun, 04 Sep 2011 23:50:00 +0200 |
parents | ca571697ec83 |
children | 2a03940deea3 |
line wrap: on
line diff
--- a/pytouhou/game/sprite.py +++ b/pytouhou/game/sprite.py @@ -18,26 +18,6 @@ from pytouhou.utils.matrix import Matrix from pytouhou.utils.interpolator import Interpolator -class AnmWrapper(object): - def __init__(self, anm_files): - self.anm_files = list(anm_files) - - - def get_sprite(self, sprite_index): - for anm in self.anm_files: - if sprite_index in anm.sprites: - return anm, anm.sprites[sprite_index] - raise IndexError - - - def get_script(self, script_index): - for anm in self.anm_files: - if script_index in anm.scripts: - return anm, anm.scripts[script_index] - raise IndexError - - - class Sprite(object): def __init__(self): self.anm = None