add window init function

This commit is contained in:
d3vyce 2022-07-27 11:24:12 +02:00
parent e8d35f4a10
commit c84e0aa41e

View File

@ -0,0 +1,9 @@
import pygame
from pygame.locals import *
def init_game():
pygame.init()
screen = pygame.display.set_mode((1280, 720), pygame.SCALED)
pygame.display.set_caption("Test Window")
return screen