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

16
src/App.zig Normal file
View File

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