Backlog/extras/gameExtras/snippets.zig

16 lines
303 B
Zig

allocator: std.mem.allocator,
pub fn create(allocator: std.mem.Allocator) !*@This() {
const self = try allocator.create(@This());
self.* = .{
.allocator = allocator,
};
return self;
}
const std = @import("std");
const backlog = @import("Backlog");
const core = backlog.core;