You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
448 B
17 lines
448 B
// include all files with tests
|
|
comptime {
|
|
// ecs
|
|
_ = @import("ecs/actor.zig");
|
|
_ = @import("ecs/component_storage.zig");
|
|
_ = @import("ecs/entity.zig");
|
|
_ = @import("ecs/handles.zig");
|
|
_ = @import("ecs/sparse_set.zig");
|
|
_ = @import("ecs/type_map.zig");
|
|
_ = @import("ecs/views.zig");
|
|
_ = @import("ecs/groups.zig");
|
|
|
|
// signals
|
|
_ = @import("signals/delegate.zig");
|
|
_ = @import("signals/signal.zig");
|
|
}
|