Skip to content

Instantly share code, notes, and snippets.

@cxmeel
Created May 17, 2020 02:50
Show Gist options
  • Save cxmeel/db5f705db74a5d249a38ae6de11cb1a0 to your computer and use it in GitHub Desktop.
Save cxmeel/db5f705db74a5d249a38ae6de11cb1a0 to your computer and use it in GitHub Desktop.
Lua Class Template
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