Rune lib and __concat for variable libs.

This commit is contained in:
jussi
2024-01-30 13:36:23 +02:00
parent 143453af9e
commit d21512d88c
14 changed files with 145 additions and 27 deletions

View File

@@ -36,6 +36,9 @@ Vector2.meta = {
__eq = function( v1, v2 )
return RL.Vector2Equals( v1, v2 ) == 1
end,
__concat = function( a, b )
return tostring( a )..tostring( b )
end,
}
function Vector2:new( x, y )