Setup for basic Editor for map, started gameplay screen

This commit is contained in:
2026-05-20 15:58:06 +02:00
parent cc0a92060b
commit 6283fb0d5a
13 changed files with 383 additions and 59 deletions
+23
View File
@@ -0,0 +1,23 @@
class BaseScreen:
def __init__(self, game):
self.game = game
self.elements = []
def process_event(self, event):
pass
def update(self, dt):
pass
def draw(self, surface):
pass
def show(self):
for element in self.elements:
element.show()
def hide(self):
for element in self.elements:
element.hide()