after solving my previous issue I have been hit by another issue, in that I'm now getting the error
const instance = fba.allocator().create(Instance) catch unreachable;```
my code is currently
```pub fn Run() !void {
try InitializeThreads();
}
fn InitializeThreads() !void {
const physicsThread = try std.Thread.spawn(.{}, PhysicsUpdate, null);
_ = physicsThread;
const inputThread = try std.Thread.spawn(.{}, InputUpdate, null);
_ = inputThread;
}
fn PhysicsUpdate() void {}
fn InputUpdate() void {}