aboutsummaryrefslogtreecommitdiff
path: root/src/root.zig
blob: 330b6ba9b5de89ab97c97c36c0c1f4c05f7ecfe9 (plain)
1
2
3
4
5
6
7
8
9
10
const std = @import("std");
const testing = std.testing;

const component = @import("ecs/component.zig");
const ecs = @import("ecs/ecs.zig");

test {
    _ = component;
    _ = ecs;
}