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

Method __init__

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

Source from the content-addressed store, hash-verified

12
13class Player(Block):
14 def __init__(self, path, x_pos, y_pos, speed):
15 super().__init__(path, x_pos, y_pos)
16 self.speed = speed
17 self.movement = 0
18 self.x = x_pos
19
20 def screen_constrain(self):
21 if self.rect.top <= 0:

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected