Skip to content

Instantly share code, notes, and snippets.

@Quenty
Last active April 28, 2018 16:35
Show Gist options
  • Save Quenty/1ae5c77c8fd1e2e6ef1b642d8a3473d7 to your computer and use it in GitHub Desktop.
Save Quenty/1ae5c77c8fd1e2e6ef1b642d8a3473d7 to your computer and use it in GitHub Desktop.
local ToolTip = {}
ToolTip.__index = ToolTip
function ToolTip.new()
local self = setmetatable({}, ToolTip)
return self
end
function ToolTip:Show()
-- code here
end
function ToolTip:Hide()
-- code here
end
function ToolTip:Destroy()
-- code here
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment