So I came across this class definition in a pygame tutorial:
class GameObject:
def _init_(self,image,height,speed):
self.speed = speed
self.image = image
self.pos = image.get_squarerect().move(0,height)
def move(self):
self.pos = self.pos.move(0, self.speed)
if self.pos.right > 600:
self.pos.left = 0
The coder then does this to fill an array(?) with objects:
objects = []
for x in range(10):
o=GameObject(player, x*40, x)
objects.append(o)
My question is why is it that only 3 arguments are passed when instantiating the object, but the class was made to accept 4 of them?