Mercurial > touhou
view pytouhou/game/player.pxd @ 491:2276229282fd
Fix gcc’s warnings with -Wall -Wextra.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Fri, 04 Oct 2013 14:32:28 +0200 |
parents | feecdb4a8928 |
children | 887de1309491 |
line wrap: on
line source
from pytouhou.game.element cimport Element from pytouhou.game.game cimport Game cdef class PlayerState: cdef public double x, y cdef public bint touchable, focused cdef public long character, score, effective_score, lives, bombs, power cdef public long graze, points cdef long invulnerable_time, power_bonus, continues, continues_used, miss, cdef long bombs_used cdef class Player(Element): cdef public PlayerState state cdef public long death_time cdef public Game _game cdef object anm cdef tuple speeds cdef long fire_time, bomb_time, direction cdef void set_anim(self, index) except * cdef void play_sound(self, str name) except * cdef void collide(self) except * cdef void fire(self) except * cpdef update(self, long keystate)