diff pytouhou/game/player.pyx @ 577:e35a083d4208

Move NextStage outside of pytouhou.vm.msg, to be able to use it from anywhere without dependency on EoSD.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Wed, 06 Aug 2014 10:50:19 +0200
parents 94229756abd9
children e15672733c93
line wrap: on
line diff
--- a/pytouhou/game/player.pyx
+++ b/pytouhou/game/player.pyx
@@ -20,10 +20,7 @@ from pytouhou.game.bullettype cimport Bu
 from pytouhou.game.bullet cimport Bullet
 from pytouhou.game.lasertype cimport LaserType
 from pytouhou.game.laser cimport PlayerLaser
-
-
-class GameOver(Exception):
-    pass
+from pytouhou.game import GameOver
 
 
 cdef class Player(Element):