Created
April 28, 2018 16:35
-
-
Save Quenty/459fd664993c0eb744c79d7529d065d9 to your computer and use it in GitHub Desktop.
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 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