mysimulation/backup-src/config.zig
Tony Bark e9d7d736eb
Some checks failed
Build / build (macos-latest) (push) Has been cancelled
Build / build (windows-latest) (push) Has been cancelled
Build / ubuntu-build (push) Has been cancelled
Build / lint (push) Has been cancelled
Restarted Zig project with the new build architecture
- Renamed old src directory as backup-src
2025-02-18 08:02:51 -05:00

15 lines
267 B
Zig

pub const Branding = struct {
logo: []const u8,
background: []const u8,
};
pub const Config = struct {
height: i64,
width: i64,
game_path: []const u8,
branding: *Branding,
pub fn init(self: Config) Config {
return self;
}
};