mach: initial support for high-level ECS applications

Adds experimental support for high-level ECS-based applications
following hexops/mach#349

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-07-04 22:17:58 -07:00 committed by Stephen Gutekanst
parent 167f2d3a4f
commit 6ec27861b4
2 changed files with 56 additions and 0 deletions

View file

@ -3,3 +3,9 @@ pub usingnamespace @import("enums.zig");
pub const Core = @import("Core.zig");
pub const Timer = @import("Timer.zig");
pub const ResourceManager = @import("resource/ResourceManager.zig");
pub const gpu = @import("gpu");
pub const ecs = @import("ecs");
// Engine exports
pub const App = @import("engine.zig").App;
pub const module = @import("engine.zig").module;