Last active
February 19, 2020 16:33
-
-
Save MindScriptAct/e4ed6fcdba7e7f3e44acd44a5c21d5a2 to your computer and use it in GitHub Desktop.
TableTop simulator lua static 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 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