Skip to content

Instantly share code, notes, and snippets.

@MindScriptAct
Last active February 19, 2020 16:33
Show Gist options
  • Save MindScriptAct/e4ed6fcdba7e7f3e44acd44a5c21d5a2 to your computer and use it in GitHub Desktop.
Save MindScriptAct/e4ed6fcdba7e7f3e44acd44a5c21d5a2 to your computer and use it in GitHub Desktop.
TableTop simulator lua static class template
local MyStaticClass = {}
local data;
function MyStaticClass:SetData(newData)
data = newData
end
function MyStaticClass:PrintData()
print(data)
end
function MyStaticClass:DoStuff()
print("doStuff!!")
end
return MyStaticClass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment