Skip to content

Instantly share code, notes, and snippets.

@stravant
Last active July 26, 2020 22:18
Show Gist options
  • Save stravant/c3f00a747522ecc901ad79e283586098 to your computer and use it in GitHub Desktop.
Save stravant/c3f00a747522ecc901ad79e283586098 to your computer and use it in GitHub Desktop.
Lua class template
local FooBar = {}
FooBar.__index = FooBar
function FooBar.new()
local this = {
_privateVariable = 137,
}
return setmetatable(this, FooBar)
end
function FooBar:myMethod()
return self._privateVariable
end
return FooBar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment