Updated default stage

This commit is contained in:
abux 2026-07-11 13:52:53 +01:00
parent 745b411495
commit 93a4606c94

View file

@ -108,6 +108,16 @@ test "Main" {
**Default App Stages** **Default App Stages**
``` zig ``` zig
pub const stage = struct { 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 --- // --- INIT ---
pub const pre_init = struct {}; pub const pre_init = struct {};
pub const init = struct {}; pub const init = struct {};