所以我正在做一个小的 Pygame 程序,我试图以体面的方式构建这些东西,这就是我坚持的地方。
class Screen(object):
def __init__(self, width, height):
self.width = width
self.height = height
self.SURFACE = 10 # I need this attribute
class GameMenager(Screen):
def __init__(self) # Do I need to put the parameters of the super class here?
super().__init__() # What to put in these parantheses?
我想获取SURFACE
属性,以便可以在 Game 类中使用它,与维度属性相同。Screen
实例化类和的正确方法是什么GameMenager
?
super()
当我在子类中没有参数时,我很高兴但实际上并没有找到有关如何实例化子类的太多信息。