mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-15 06:41:21 +00:00
15 lines
267 B
Zig
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;
|
|
}
|
|
};
|