view pytouhou/game/itemtype.py @ 337:bc162f60f0a0

Skip dialogs in the boss rush mode, and make boss rush skipping faster
author Thibaut Girka <thib@sitedethib.com>
date Sun, 01 Jul 2012 18:07:33 +0200
parents 5afc75f71fed
children c9433188ffdb
line wrap: on
line source

from pytouhou.game.sprite import Sprite

class ItemType(object):
    def __init__(self, anm_wrapper, sprite_index, indicator_sprite_index):
        self.anm_wrapper = anm_wrapper
        self.sprite = Sprite()
        self.sprite.anm, self.sprite.texcoords = anm_wrapper.get_sprite(sprite_index)
        self.indicator_sprite = Sprite()
        self.indicator_sprite.anm, self.indicator_sprite.texcoords = anm_wrapper.get_sprite(indicator_sprite_index)