DearImGui is back again

This commit is contained in:
2025-03-22 17:33:10 +01:00
parent 9a8ab7853a
commit 2208a7200f
6 changed files with 172 additions and 49 deletions

View File

@@ -4,3 +4,7 @@ to_temp_c_string :: (s: string) -> *u8 {
result[s.count] = 0;
return result;
}
tprint_c :: (str: string, args: .. Any) -> *u8 {
return to_temp_c_string(tprint(str, ..args));
}