Mercurial > touhou
view pytouhou/game/itemtype.py @ 223:98c64ffcbdff
Make pytouhou.ui.{background,texture} Cython modules as they are only used by Cython modules.
author | Thibaut Girka <thib@sitedethib.com> |
---|---|
date | Sun, 18 Dec 2011 21:23:51 +0100 |
parents | e1bc8c4cbb1a |
children | 5afc75f71fed |
line wrap: on
line source
from pytouhou.game.sprite import Sprite class ItemType(object): def __init__(self, anm_wrapper, sprite_index, indicator_sprite_index, hitbox_size=38.): 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) self.hitbox_size = hitbox_size