Mercurial > touhou
comparison pytouhou/game/orb.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 | 6be9c99a3a24 |
children |
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 Orb(Element): | 18 class Orb(Element): |
19 def __init__(self, anm, index, player): | 19 def __init__(self, anm, index, player): |
20 Element.__init__(self) | 20 Element.__init__(self) |