forked from Simnation/Main
12 lines
194 B
Lua
12 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
|