1
0
mirror of https://github.com/d3vyce/Python-Game.git synced 2025-04-05 05:10:48 +02:00

add window init function

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

@ -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