ReiLuaGui File explorer.

This commit is contained in:
jussi
2022-12-08 18:24:41 +02:00
parent 79fbb36d2a
commit 973d902a16
16 changed files with 473 additions and 86 deletions

View File

@@ -152,6 +152,10 @@ function utillib.toBoolean( v )
return false
end
function utillib.boo2Number( bool )
return bool and 1 or 0
end
-- Print table content.
function utillib.printt( t )
print( tostring(t).." = {" )