Added title.py surface

This commit is contained in:
Nicholas Dyer 2023-05-11 09:58:44 -04:00
parent 44986e62c0
commit 2987bfa7ed

View File

@ -0,0 +1,12 @@
import pygame
class Surface(pygame.Surface):
def __init__(self, window_size):
super().__init__(window_size, pygame.SRCALPHA)
self.running = True
self.next_surface = None
def update(self):
self.fill((0, 0, 0))