Creación de la superficie¶
import sys
import pygame as pg
WIDTH, HEIGHT = 720, 400
pg.init()
display = pg.display.set_mode((WIDTH, HEIGHT))
pg.display.set_caption("Hola PyGame")
while 1:
for event in pg.event.get():
if event.type == pg.QUIT:
sys.exit()
Última edición: 13 de Febrero de 2022