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
712 B
16 lines
712 B
// ecs
|
|
pub const EntityTraitsType = @import("ecs/entity.zig").EntityTraitsType;
|
|
|
|
// TODO: remove me. this is just for testing
|
|
pub const ComponentStorage = @import("ecs/component_storage.zig").ComponentStorage;
|
|
|
|
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;
|
|
pub const BasicGroup = @import("ecs/groups.zig").BasicGroup;
|
|
pub const OwningGroup = @import("ecs/groups.zig").OwningGroup;
|
|
|
|
// signals
|
|
pub const Signal = @import("signals/signal.zig").Signal;
|
|
pub const Dispatcher = @import("signals/dispatcher.zig").Dispatcher; |