diff options
| author | jussi | 2023-11-30 19:41:22 +0200 |
|---|---|---|
| committer | jussi | 2023-11-30 19:41:22 +0200 |
| commit | a5d40f70258644b4c631e6917f1883ce548ebbeb (patch) | |
| tree | 9b6cf81de07ee8fd7bc04b3ae5dbb3b8e35fd7f7 /examples/resources/lib/matrix.lua | |
| parent | aa03fffcb32e4a04589d74273c81316b39afacd9 (diff) | |
| download | reilua-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/matrix.lua')
| -rw-r--r-- | examples/resources/lib/matrix.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/resources/lib/matrix.lua b/examples/resources/lib/matrix.lua index e825102..3b68118 100644 --- a/examples/resources/lib/matrix.lua +++ b/examples/resources/lib/matrix.lua @@ -22,7 +22,7 @@ local function deepCopy( orig ) return copy end -Matrix = {} +local Matrix = {} Matrix.meta = { __index = Matrix, __tostring = function( m ) |
