refactor stub

This commit is contained in:
David Allemang
2024-07-09 13:19:56 -04:00
parent eaf97a306f
commit 1269018e61
8 changed files with 468 additions and 273 deletions

20
src/nu/ImGui.zig Normal file
View File

@@ -0,0 +1,20 @@
//! all imgui code through this path
const std = @import("std");
const Self = @This();
const Window = @import("Window.zig");
const Render = @import("Render.zig");
pub fn init(alloc: std.mem.Allocator, window: *Window, render: *Render) !Self {
_ = alloc;
_ = window;
_ = render;
return .{};
}
pub fn deinit(self: *Self) void {
_ = self;
}