comparison pytouhou/game/player.pxd @ 492:887de1309491

Add friendly fire in netplay.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Sat, 21 Sep 2013 20:26:39 +0200
parents feecdb4a8928
children 6be9c99a3a24
comparison
equal deleted inserted replaced
491:2276229282fd 492:887de1309491
5 cdef public double x, y 5 cdef public double x, y
6 cdef public bint touchable, focused 6 cdef public bint touchable, focused
7 cdef public long character, score, effective_score, lives, bombs, power 7 cdef public long character, score, effective_score, lives, bombs, power
8 cdef public long graze, points 8 cdef public long graze, points
9 9
10 cdef long number
10 cdef long invulnerable_time, power_bonus, continues, continues_used, miss, 11 cdef long invulnerable_time, power_bonus, continues, continues_used, miss,
11 cdef long bombs_used 12 cdef long bombs_used
12 13
13 14
14 cdef class Player(Element): 15 cdef class Player(Element):