main_screen.py~ 131 B

12345678
  1. import pygame
  2. class MainScreen():
  3. def update(self):
  4. surface = pygame.Surface((200,200)).fill((255,255,255))
  5. return surface