fmsl/std/log.lua

14 lines
245 B
Lua
Raw Permalink Normal View History

2024-09-15 08:06:18 +00:00
local Log = {
color = false,
checkmarks = {
[false] = {[false] = "", [true] = ""},
[true] = {[false] = "", [true] = ""},
},
}
function Log.checkmark(success)
return Log.checkmarks[Log.color][success]
end
return Log