blob: 60a4df4b9caf5b15bbf6fb412d59408e48f12a1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
const std = @import("std");
const testing = std.testing;
const component = @import("ecs/component.zig");
const ecs = @import("ecs/ecs.zig");
const run = @import("run.zig");
test {
_ = component;
_ = ecs;
_ = run;
}
|