Match bool c style

This commit is contained in:
Krzosa Karol
2023-04-16 15:30:08 +02:00
parent d4a7fc32c8
commit 4f658c0c09
12 changed files with 96 additions and 96 deletions

View File

@@ -20,7 +20,7 @@ MU :: struct
mouse: Mouse
frame_count: U64
time: MUTime
quit: Bool
quit: bool
frame_arena: Arena
os: Platform
@@ -30,7 +30,7 @@ MUWindow :: struct
y: S64
sizef: Vec2
size: Vec2I
resizable: Bool
resizable: bool
MUTime :: struct
total : F64
@@ -39,7 +39,7 @@ MUTime :: struct
frame_start: F64
KeyState :: struct
down: Bool
down: bool
Key :: enum
None