|
|
|
@ -1,11 +1,10 @@ |
|
|
|
|
const std = @import("std"); |
|
|
|
|
const Allocator = std.mem.Allocator; |
|
|
|
|
|
|
|
|
|
const meta = @import("./meta.zig"); |
|
|
|
|
const c = @import("./c.zig"); |
|
|
|
|
const errors = @import("./errors.zig"); |
|
|
|
|
const flecszigble = @import("./main.zig"); |
|
|
|
|
const Path = flecszigble.Path; |
|
|
|
|
const c = flecszigble.c; |
|
|
|
|
const meta = @import("./meta.zig"); |
|
|
|
|
const Path = @import("./path.zig"); |
|
|
|
|
|
|
|
|
|
pub const EntityError = error{ |
|
|
|
|
/// Id is `0`. |
|
|
|
@ -345,6 +344,7 @@ pub fn Entity(comptime ctx: anytype) type { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
const expect = @import("./test/expect.zig"); |
|
|
|
|
const flecszigble = @import("./main.zig"); |
|
|
|
|
|
|
|
|
|
test "Entity get and set" { |
|
|
|
|
flecszigble.init(std.testing.allocator); |
|
|
|
|