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
458 B
11 lines
458 B
// 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/views.zig").BasicView;
|
|
pub const BasicMultiView = @import("ecs/views.zig").BasicMultiView;
|
|
|
|
// signals
|
|
pub const Signal = @import("signals/signal.zig").Signal;
|
|
pub const Dispatcher = @import("signals/dispatcher.zig").Dispatcher; |