comparison pytouhou/ui/window.pxd @ 578:00f228b57840

Make Runner.update callable from Python code.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Mon, 04 Aug 2014 18:18:55 +0200
parents 8f51e34d911c
children 0768122da817
comparison
equal deleted inserted replaced
577:e35a083d4208 578:00f228b57840
13 cdef class Runner: 13 cdef class Runner:
14 cdef long width, height 14 cdef long width, height
15 15
16 cdef void start(self) except * 16 cdef void start(self) except *
17 cdef void finish(self) except * 17 cdef void finish(self) except *
18 cdef bint update(self) except * 18 cpdef bint update(self) except? False
19 19
20 20
21 cdef class Window: 21 cdef class Window:
22 cdef sdl.Window win 22 cdef sdl.Window win
23 cdef Runner runner 23 cdef Runner runner