blob: 278915b7b113fab370b092fc5c806bbced0b9602 (
plain)
1
2
3
4
5
6
|
pub const components = @import("components.zig");
const entities = @import("entities.zig");
pub const Pool = entities.Pool;
pub const System = *const fn (*Pool) void;
pub const SystemGroup = []const System;
|