Created
May 17, 2020 02:50
-
-
Save cxmeel/db5f705db74a5d249a38ae6de11cb1a0 to your computer and use it in GitHub Desktop.
Lua Class Template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local Module = {} | |
Module.__index = Module | |
function Module.new() | |
local self = setmetatable({}, Module) | |
return self | |
end | |
return Module |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment