mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-07-04 21:50:35 -04:00
Updated documentation
- In general, the README should be more clean and concise - Moved building section to seperate file (doesn't include set up page) - Added contributing section in REMADE - Updated license section in README - Added config file and struct for later use
This commit is contained in:
parent
199256785b
commit
f9764eac17
7 changed files with 733 additions and 698 deletions
10
src/config.zig
Normal file
10
src/config.zig
Normal file
|
@ -0,0 +1,10 @@
|
|||
pub const Branding = struct {
|
||||
logo: []const u8,
|
||||
background: []const u8,
|
||||
};
|
||||
|
||||
pub const Config = struct {
|
||||
height: i64,
|
||||
width: i64,
|
||||
branding: *Branding,
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue