Skip to content

Instantly share code, notes, and snippets.

@Quenty
Created April 28, 2018 16:35
Show Gist options
  • Select an option

  • Save Quenty/459fd664993c0eb744c79d7529d065d9 to your computer and use it in GitHub Desktop.

Select an option

Save Quenty/459fd664993c0eb744c79d7529d065d9 to your computer and use it in GitHub Desktop.
local ToolTip = require("ToolTip")
local RoundToolTip = setmetatable({}, ToolTip)
RoundToolTip.__index = RoundToolTip
function RoundToolTip.new()
local self = setmetatable(ToolTip.new(), RoundToolTip)
return self
end
function RoundToolTip:Show()
-- code here, this overrides the ToolTip:Show() method
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment