Skeleton for a pygame zero app.
authorSimon Cross <hodgestar@gmail.com>
Sun, 28 Feb 2016 15:22:18 +0000 (17:22 +0200)
committerSimon Cross <hodgestar@gmail.com>
Sun, 28 Feb 2016 15:22:18 +0000 (17:22 +0200)
app.py [new file with mode: 0644]
koperkapel/__init__.py [new file with mode: 0644]
koperkapel/pgzapp.py [new file with mode: 0644]

diff --git a/app.py b/app.py
new file mode 100644 (file)
index 0000000..cfe3902
--- /dev/null
+++ b/app.py
@@ -0,0 +1,8 @@
+#!/usr/bin/env pgzrun
+
+import os
+import sys
+
+sys.path.append(os.path.curdir)
+
+from koperkapel.pgzapp import *
diff --git a/koperkapel/__init__.py b/koperkapel/__init__.py
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/koperkapel/pgzapp.py b/koperkapel/pgzapp.py
new file mode 100644 (file)
index 0000000..225dde9
--- /dev/null
@@ -0,0 +1,5 @@
+""" Pygame-zero application module. """
+
+TITLE = "Koperkapel"
+WIDTH = 1024
+HEIGHT = 768