chore: init
This commit is contained in:
9
src/game.py
Normal file
9
src/game.py
Normal file
@@ -0,0 +1,9 @@
|
||||
import pygame
|
||||
|
||||
|
||||
class Game:
|
||||
DEFAULT_SIZE = (1280, 720)
|
||||
|
||||
def __init__(self):
|
||||
pygame.init()
|
||||
self.win: pygame.Surface = pygame.display.set_mode(self.DEFAULT_SIZE)
|
||||
Reference in New Issue
Block a user