fmsl/std/log.lua

14 lines
245 B
Lua

local Log = {
color = false,
checkmarks = {
[false] = {[false] = "", [true] = ""},
[true] = {[false] = "", [true] = ""},
},
}
function Log.checkmark(success)
return Log.checkmarks[Log.color][success]
end
return Log