MCPcopy Create free account
hub / github.com/Mrinank-Bhowmick/python-beginner-projects / __init__

Method __init__

projects/PONG/main.py:7–10  ·  view source on GitHub ↗
(self, path, x_pos, y_pos)

Source from the content-addressed store, hash-verified

5
6class Block(pygame.sprite.Sprite):
7 def __init__(self, path, x_pos, y_pos):
8 super().__init__()
9 self.image = pygame.image.load(path)
10 self.rect = self.image.get_rect(center=(x_pos, y_pos))
11
12
13class Player(Block):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected