Mercurial > touhou
comparison pytouhou/games/eosd.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 | bcff39c920ab |
children | 1e9ea6519f3c |
comparison
equal
deleted
inserted
replaced
546:94dd9862c470 | 547:e35bef07290d |
---|---|
22 from pytouhou.game.orb import Orb | 22 from pytouhou.game.orb import Orb |
23 from pytouhou.game.effect import Effect | 23 from pytouhou.game.effect import Effect |
24 from pytouhou.game.text import Text, Counter, Gauge, NativeText | 24 from pytouhou.game.text import Text, Counter, Gauge, NativeText |
25 from pytouhou.game.background import Background | 25 from pytouhou.game.background import Background |
26 | 26 |
27 from pytouhou.vm.eclrunner import ECLMainRunner | 27 from pytouhou.vm import ECLMainRunner |
28 | 28 |
29 | 29 |
30 class EoSDCommon(object): | 30 class EoSDCommon(object): |
31 def __init__(self, resource_loader, player_characters, continues, stage, | 31 def __init__(self, resource_loader, player_characters, continues, stage, |
32 width=384, height=448): | 32 width=384, height=448): |