Mercurial > touhou
view pytouhou/game/character.py @ 179:3c2a9e28198c
Make rand_uint16 slighty easier to understand, and add a rewind function for debugging purposes.
author | Thibaut Girka <thib@sitedethib.com> |
---|---|
date | Sun, 23 Oct 2011 21:00:53 +0200 |
parents | 80a4c7ed43b3 |
children |
line wrap: on
line source
class Character(object): def __init__(self, anm_wrapper, speed, focused_speed, hitbox_size, graze_hitbox_size): self.anm_wrapper = anm_wrapper self.speed = speed self.focused_speed = focused_speed self.hitbox_size = hitbox_size self.graze_hitbox_size = graze_hitbox_size