comparison pytouhou/game/text.py @ 491:2276229282fd

Fix gcc’s warnings with -Wall -Wextra.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Fri, 04 Oct 2013 14:32:28 +0200
parents 1c891c71cf22
children e35bef07290d
comparison
equal deleted inserted replaced
490:1b532e7dd521 491:2276229282fd
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.game.element import Element
16 from pytouhou.game.sprite import Sprite
17 from pytouhou.vm.anmrunner import ANMRunner 15 from pytouhou.vm.anmrunner import ANMRunner
18 from pytouhou.utils.interpolator import Interpolator
19 16
20 17
21 class Glyph(Element): 18 class Glyph(Element):
22 def __init__(self, sprite, pos): 19 def __init__(self, sprite, pos):
23 Element.__init__(self, pos) 20 Element.__init__(self, pos)