Compare commits

..

2 commits

Author SHA1 Message Date
93a4606c94 Updated default stage 2026-07-11 13:52:53 +01:00
745b411495 Updated default stage 2026-07-11 13:52:48 +01:00
2 changed files with 20 additions and 0 deletions

View file

@ -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 {};

View file

@ -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 {};