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.
16 lines
412 B
16 lines
412 B
5 years ago
|
// 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/view.zig");
|
||
|
|
||
|
// signals
|
||
|
_ = @import("signals/delegate.zig");
|
||
|
_ = @import("signals/signal.zig");
|
||
|
}
|