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

@@ -2,19 +2,11 @@
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 {
pub fn init(alloc: std.mem.Allocator) !void {
_ = alloc;
_ = window;
_ = render;
return .{};
}
pub fn deinit(self: *Self) void {
_ = self;
pub fn deinit() void {
}