Updated default stage
This commit is contained in:
parent
81335aeddf
commit
745b411495
1 changed files with 10 additions and 0 deletions
10
src/app.zig
10
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 {};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue