refactor stub
This commit is contained in:
16
src/App.zig
Normal file
16
src/App.zig
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user