We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c39b94 commit 84f1292Copy full SHA for 84f1292
src/Graphik.py
@@ -9,6 +9,13 @@
9
# @author Daniel McCoy Stephenson
10
# @since February 3rd, 2022
11
class Graphik:
12
+ def __init__(self):
13
+ displayWidth = 900
14
+ displayHeight = 600
15
+ self.gameDisplay = pygame.display.set_mode((displayWidth, displayHeight))
16
+
17
+ self.version = 0.1
18
19
def __init__(self, gameDisplay):
20
self.gameDisplay = gameDisplay
21
0 commit comments