aboutsummaryrefslogtreecommitdiff
path: root/src/main.odin
diff options
context:
space:
mode:
authoriamcheeseman <[hidden email]>2026-01-13 22:28:59 -0500
committeriamcheeseman <[hidden email]>2026-01-13 22:28:59 -0500
commit0bf86ef7b8f0ecad958f3fb592ceaf3d2f30336a (patch)
treeacc7ee1c60579b5547ee23e5311446d588075b20 /src/main.odin
parente5319f53de9f5f8ba4cb67e1302ebc3d7036135c (diff)
add support for tiled objects
Diffstat (limited to 'src/main.odin')
-rw-r--r--src/main.odin3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.odin b/src/main.odin
index 0ce4fac..3b0f203 100644
--- a/src/main.odin
+++ b/src/main.odin
@@ -140,9 +140,10 @@ main :: proc() {
rl.SetTraceLogCallback(raylib_log)
rl.InitWindow(480 * 2, 360 * 2, "Demonchime")
-
rl.SetWindowState({.WINDOW_RESIZABLE})
+ rl.SetTargetFPS(240)
+
init()
for !rl.WindowShouldClose() {