forked from Simnation/Main
13 lines
194 B
Lua
13 lines
194 B
Lua
![]() |
---
|
||
|
--[[ Contains client-side helper functions. ]]
|
||
|
---
|
||
|
|
||
|
local Utils = {}
|
||
|
|
||
|
function Utils.debug(...)
|
||
|
if not Config.debug then return end
|
||
|
lib.print.info(...)
|
||
|
end
|
||
|
|
||
|
return Utils
|