modules are global
This commit is contained in:
@@ -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 {
|
||||
}
|
||||
|
Reference in New Issue
Block a user