modules are global

This commit is contained in:
David Allemang
2024-07-09 13:57:08 -04:00
parent 1269018e61
commit 4d3d4e6ee6
6 changed files with 48 additions and 63 deletions

View File

@@ -3,14 +3,9 @@ const nu = @import("nu.zig");
const Self = @This();
pub fn init(alloc: std.mem.Allocator, render: *nu.Render, imgui: *nu.ImGui) !Self {
pub fn init(alloc: std.mem.Allocator) !void {
_ = alloc;
_ = render;
_ = imgui;
return .{};
}
pub fn deinit(self: *Self) void {
_ = self;
pub fn deinit() void {
}