comparison pytouhou/game/text.py @ 547:e35bef07290d

Always import runners from pytouhou.vm, to allow their replacement.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Fri, 08 Nov 2013 18:47:00 +0100
parents 2276229282fd
children e15672733c93
comparison
equal deleted inserted replaced
546:94dd9862c470 547:e35bef07290d
10 ## but WITHOUT ANY WARRANTY; without even the implied warranty of 10 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 ## GNU General Public License for more details. 12 ## GNU General Public License for more details.
13 ## 13 ##
14 14
15 from pytouhou.vm.anmrunner import ANMRunner 15 from pytouhou.vm import ANMRunner
16 16
17 17
18 class Glyph(Element): 18 class Glyph(Element):
19 def __init__(self, sprite, pos): 19 def __init__(self, sprite, pos):
20 Element.__init__(self, pos) 20 Element.__init__(self, pos)