diff pytouhou/game/sprite.pyx @ 628:df3c4ef5f2cc

Partially revert 98603f2c32b4, as the creation of a .h file made some checking tools unhappy.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Sun, 19 Apr 2015 19:08:39 +0200
parents 98603f2c32b4
children
line wrap: on
line diff
--- a/pytouhou/game/sprite.pyx
+++ b/pytouhou/game/sprite.pyx
@@ -16,7 +16,7 @@ from libc.stdlib cimport free
 from libc.string cimport memcpy
 
 
-cdef public class Sprite[object Sprite, type SpriteType]:
+cdef class Sprite:
     def __dealloc__(self):
         if self._rendering_data != NULL:
             free(self._rendering_data)