mirror of
https://github.com/d3vyce/Python-Game.git
synced 2025-04-03 12:23:22 +02:00
add window init function
This commit is contained in:
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
|
Loading…
x
Reference in New Issue
Block a user