diff pytouhou/game/game.pxd @ 486:2f53be1b2f60

Merge netplay branch.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Fri, 27 Sep 2013 19:01:47 +0200
parents 1c891c71cf22
children 887de1309491
line wrap: on
line diff
--- a/pytouhou/game/game.pxd
+++ b/pytouhou/game/game.pxd
@@ -34,11 +34,11 @@ cdef class Game:
     cpdef NativeText new_native_text(self, tuple pos, unicode text, align=*)
     cpdef Text new_hint(self, hint)
     cpdef new_face(self, side, effect)
-    cpdef run_iter(self, long keystate)
+    cpdef run_iter(self, list keystates)
     cdef void update_background(self) except *
     cdef void update_enemies(self) except *
     cdef void update_msg(self, long keystate) except *
-    cdef void update_players(self, long keystate) except *
+    cdef void update_players(self, list keystates) except *
     cdef void update_effects(self) except *
     cdef void update_hints(self) except *
     cdef void update_faces(self) except *