Added support for importing functions and begin working on a modding tools
This commit is contained in:
parent
59e3997056
commit
e0d44a5f84
5 changed files with 132 additions and 62 deletions
19
modding/log.zig
Normal file
19
modding/log.zig
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
pub extern fn logErr(
|
||||
format: [*:0]const u8,
|
||||
...,
|
||||
) void;
|
||||
|
||||
pub extern fn logWarn(
|
||||
format: [*:0]const u8,
|
||||
...,
|
||||
) void;
|
||||
|
||||
pub extern fn logInfo(
|
||||
format: [*:0]const u8,
|
||||
...,
|
||||
) void;
|
||||
|
||||
pub extern fn logDebug(
|
||||
format: [*:0]const u8,
|
||||
...,
|
||||
) void;
|
||||
Loading…
Add table
Add a link
Reference in a new issue