Add core/delta_time example. (#305)

Add delta_time example.
This commit is contained in:
Isaac de Andrade 2026-01-29 12:12:54 -07:00 committed by GitHub
parent 96de992410
commit 97ebf75ce5
Failed to generate hash of commit
2 changed files with 107 additions and 0 deletions

View file

@ -110,6 +110,11 @@ pub fn build(b: *std.Build) !void {
.path = "examples/core/basic_window.zig",
.desc = "Creates a basic window with text",
},
.{
.name = "delta_time",
.path = "examples/core/delta_time.zig",
.desc = "Show how to use frame time (delta time)",
},
.{
.name = "core_monitor_change",
.path = "examples/core/core_monitor_change.zig",