Reorganize constants
[koperkapel.git] / koperkapel / pgzapp.py
index 109e39e752c92e0e6a9b966d049b5cca1d701635..ca9a23f6d11faeb364cb208ff3becbb26a34ca74 100644 (file)
@@ -4,10 +4,8 @@ import sys
 
 from .scenes.base import Engine
 from .scenes.menu import MenuScene
+from .constants import WIDTH, HEIGHT, TITLE
 
-TITLE = "Koperkapel"
-WIDTH = 1024
-HEIGHT = 768
 
 engine = Engine(sys.modules[__name__], MenuScene())