upload so it isnt lost now

This commit is contained in:
lustlion
2021-10-17 01:06:11 +02:00
commit 966aebf046
258 changed files with 2859 additions and 0 deletions

9
data/scripts/math.lua Normal file
View File

@@ -0,0 +1,9 @@
function math.sign(x)
if x<0 then
return -1
elseif x>0 then
return 1
else
return 0
end
end