1
0
Fork 0
forked from Simnation/Main
Main/resources/[Developer]/[Nordi]/0r-atmrobbery/modules/utils/server.lua

13 lines
194 B
Lua
Raw Normal View History

2025-06-07 08:51:21 +02:00
---
--[[ Contains client-side helper functions. ]]
---
local Utils = {}
function Utils.debug(...)
if not Config.debug then return end
lib.print.info(...)
end
return Utils