Mercurial > touhou
comparison 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 |
comparison
equal
deleted
inserted
replaced
474:ca22df9e70bc | 486:2f53be1b2f60 |
---|---|
32 cpdef new_msg(self, sub) | 32 cpdef new_msg(self, sub) |
33 cdef Text new_label(self, tuple pos, bytes text) | 33 cdef Text new_label(self, tuple pos, bytes text) |
34 cpdef NativeText new_native_text(self, tuple pos, unicode text, align=*) | 34 cpdef NativeText new_native_text(self, tuple pos, unicode text, align=*) |
35 cpdef Text new_hint(self, hint) | 35 cpdef Text new_hint(self, hint) |
36 cpdef new_face(self, side, effect) | 36 cpdef new_face(self, side, effect) |
37 cpdef run_iter(self, long keystate) | 37 cpdef run_iter(self, list keystates) |
38 cdef void update_background(self) except * | 38 cdef void update_background(self) except * |
39 cdef void update_enemies(self) except * | 39 cdef void update_enemies(self) except * |
40 cdef void update_msg(self, long keystate) except * | 40 cdef void update_msg(self, long keystate) except * |
41 cdef void update_players(self, long keystate) except * | 41 cdef void update_players(self, list keystates) except * |
42 cdef void update_effects(self) except * | 42 cdef void update_effects(self) except * |
43 cdef void update_hints(self) except * | 43 cdef void update_hints(self) except * |
44 cdef void update_faces(self) except * | 44 cdef void update_faces(self) except * |
45 cdef void update_bullets(self) except * | 45 cdef void update_bullets(self) except * |
46 cpdef cleanup(self) | 46 cpdef cleanup(self) |