aboutsummaryrefslogtreecommitdiff
path: root/src/window.moon
diff options
context:
space:
mode:
authorAlex Pickering <alex@cogarr.net>2026-02-01 13:14:32 -0600
committerAlexander M Pickering <alex@cogarr.net>2026-02-01 13:14:32 -0600
commit3a975db66a3711f34e8b64bb27a8eaca79fdeca9 (patch)
treefcc12f8f9d638ff575c1963796de76b7628854b4 /src/window.moon
downloadggj26-master.tar.gz
ggj26-master.tar.bz2
ggj26-master.zip
Initial commitHEADmaster
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