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.
11 lines
456 B
11 lines
456 B
5 years ago
|
// ecs
|
||
|
pub const EntityTraitsType = @import("ecs/entity.zig").EntityTraitsType;
|
||
|
|
||
|
pub const Entity = @import("ecs/registry.zig").Entity;
|
||
|
pub const Registry = @import("ecs/registry.zig").Registry;
|
||
|
pub const BasicView = @import("ecs/view.zig").BasicView;
|
||
|
pub const BasicMultiView = @import("ecs/view.zig").BasicMultiView;
|
||
|
|
||
|
// signals
|
||
|
pub const Signal = @import("signals/signal.zig").Signal;
|
||
|
pub const Dispatcher = @import("signals/dispatcher.zig").Dispatcher;
|