dont init sound

This commit is contained in:
Harald Schafer
2020-07-31 13:11:59 -07:00
parent 1d7f4bc3b1
commit 0a01d88139

View File

@@ -6,7 +6,7 @@ class Window():
def __init__(self, w, h, caption="window", double=False):
self.w = w
self.h = h
pygame.init()
pygame.display.init()
pygame.display.set_caption(caption)
self.double = double
if self.double: