Base infrastructure for scenes.
[koperkapel.git] / koperkapel / pgzapp.py
1 """ Pygame-zero application module. """
2
3 TITLE = "Koperkapel"
4 WIDTH = 1024
5 HEIGHT = 768
6
7 from .scenes import menu
8
9 current_scene = menu.MenuScene()
10
11
12 def update(dt):
13     current_scene.update(dt)
14
15
16 def draw():
17     current_scene.draw(screen)