diff pytouhou/game/game.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 2f53be1b2f60
children 3d3285918ba1
line wrap: on
line diff
--- a/pytouhou/game/game.pxd
+++ b/pytouhou/game/game.pxd
@@ -12,6 +12,8 @@ cdef class Game:
     cdef public bint time_stop, msg_wait
     cdef public unsigned short deaths_count, next_bonus
 
+    cdef bint friendly_fire
+
     cdef list msg_sprites(self)
     cdef list lasers_sprites(self)
     cdef void modify_difficulty(self, long diff) except *