From 745b41149580f8d6026c81fe3cb6b0e2c6366ead Mon Sep 17 00:00:00 2001 From: abux Date: Sat, 11 Jul 2026 13:52:48 +0100 Subject: [PATCH] Updated default stage --- src/app.zig | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/app.zig b/src/app.zig index 4b89132..a02b8cc 100644 --- a/src/app.zig +++ b/src/app.zig @@ -13,6 +13,16 @@ const Self = @This(); /// Default app stages /// ---------------------------------------------------- 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 {};