aboutsummaryrefslogtreecommitdiff
path: root/src/window.moon
diff options
context:
space:
mode:
Diffstat (limited to 'src/window.moon')
-rw-r--r--src/window.moon11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/window.moon b/src/window.moon
new file mode 100644
index 0000000..7fc7953
--- /dev/null
+++ b/src/window.moon
@@ -0,0 +1,11 @@
+color = require("color")
+-- Special file to hold the window, no dependencies!
+win = am.window{
+ title: "GGJ 2026"
+ width: 360
+ height: 800
+ clear_color: color.am_color.background
+ depth_buffer: true
+}
+win.scene = am.group!
+win