mach: Implement basic resource loading system

Curently no real management has been implemented. It just loads the
resource from the list of paths present and provides the raw data from
it.
This commit is contained in:
iddev5 2022-06-20 13:11:12 +05:30 committed by Stephen Gutekanst
parent 6ed04c1e65
commit e58fd44ec0
2 changed files with 65 additions and 0 deletions

View file

@ -2,3 +2,4 @@ pub usingnamespace @import("structs.zig");
pub usingnamespace @import("enums.zig");
pub const Engine = @import("Engine.zig");
pub const Timer = @import("Timer.zig");
pub const ResourceManager = @import("resource/ResourceManager.zig");