From 93a4606c94f67b1f0a559c2efff3d8ff030b3300 Mon Sep 17 00:00:00 2001 From: abux Date: Sat, 11 Jul 2026 13:52:53 +0100 Subject: [PATCH] Updated default stage --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index bcacdf8..4dd63a2 100644 --- a/README.md +++ b/README.md @@ -108,6 +108,16 @@ test "Main" { **Default App Stages** ``` zig pub const stage = struct { + // --- BEGIN FRAME --- + pub const pre_begin_frame = struct {}; + pub const begin_frame = struct {}; + pub const post_begin_frame = struct {}; + + // --- END FRAME --- + pub const pre_end_frame = struct {}; + pub const end_frame = struct {}; + pub const post_end_frame = struct {}; + // --- INIT --- pub const pre_init = struct {}; pub const init = struct {};