summaryrefslogtreecommitdiff
path: root/examples/resources/lib/vector3.lua
diff options
context:
space:
mode:
authorjussi2023-11-30 19:41:22 +0200
committerjussi2023-11-30 19:41:22 +0200
commita5d40f70258644b4c631e6917f1883ce548ebbeb (patch)
tree9b6cf81de07ee8fd7bc04b3ae5dbb3b8e35fd7f7 /examples/resources/lib/vector3.lua
parentaa03fffcb32e4a04589d74273c81316b39afacd9 (diff)
downloadreilua-enhanced-a5d40f70258644b4c631e6917f1883ce548ebbeb.tar.gz
reilua-enhanced-a5d40f70258644b4c631e6917f1883ce548ebbeb.tar.bz2
reilua-enhanced-a5d40f70258644b4c631e6917f1883ce548ebbeb.zip
Raygui wrapper library is now object based.
Diffstat (limited to 'examples/resources/lib/vector3.lua')
-rw-r--r--examples/resources/lib/vector3.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/resources/lib/vector3.lua b/examples/resources/lib/vector3.lua
index 1b5cdd3..ca294e9 100644
--- a/examples/resources/lib/vector3.lua
+++ b/examples/resources/lib/vector3.lua
@@ -5,7 +5,7 @@ end
local Vector2 = require( "vector2" )
-Vector3 = {}
+local Vector3 = {}
Vector3.meta = {
__index = Vector3,
__tostring = function( v )