comparison pytouhou/games/sample/interface.py @ 615:d1f0bb0b7a17

Don’t inherit explicitely from object, we are not on Python 2.7 anymore. :)
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Sat, 28 Mar 2015 21:40:51 +0100
parents 244c99c568c8
children
comparison
equal deleted inserted replaced
614:2cf518129725 615:d1f0bb0b7a17
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 class Interface(object): 15 class Interface:
16 width = 384 16 width = 384
17 height = 448 17 height = 448
18 game_pos = (0, 0) 18 game_pos = (0, 0)
19 19
20 def __init__(self, resource_loader, player_state): 20 def __init__(self, resource_loader, player_state):