aboutsummaryrefslogtreecommitdiff
path: root/conf.lua
diff options
context:
space:
mode:
authoriamcheeseman <[email protected]>2026-03-11 22:00:46 -0400
committeriamcheeseman <[email protected]>2026-03-11 22:01:10 -0400
commit9e1afa5a96849aeb8eafce786c2411af7f45508c (patch)
tree02757ee152796d29aaad8b1607235b47a8572361 /conf.lua
parentb941dc08244dfe62a6fb0f951c234b0eff736c74 (diff)
Scale up the default window size
I need to see
Diffstat (limited to 'conf.lua')
-rw-r--r--conf.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/conf.lua b/conf.lua
new file mode 100644
index 0000000..db60d1a
--- /dev/null
+++ b/conf.lua
@@ -0,0 +1,5 @@
+function love.conf(t)
+ t.window.title = "Gutshot"
+ t.window.width = 320 * 3
+ t.window.height = 180 * 3
+end