core: examples: update import path style

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2024-04-19 19:05:18 -07:00
parent 78edb10446
commit 07d9855f73
47 changed files with 216 additions and 93 deletions

View file

@ -1,6 +1,9 @@
const std = @import("std");
const core = @import("mach").core;
const gpu = core.gpu;
const mach = @import("mach");
const core = mach.core;
const gpu = mach.gpu;
const renderer = @import("renderer.zig");
pub const App = @This();