Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --this program handles the creation and running of buttons
- local tArg = {..}
- Class = {
- new = function(self)
- local new = {}
- setmetatable(new, {__index = self })
- return new
- end,
- setCord = function(self, Shape)
- self.Shape = {..Shape..}
- end,
- SetResult = function(self, result)
- self.result = result
- end
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement