diff --git a/gamemodes/terrortown/gamemode/client/cl_vskin/vgui/dlabel_ttt2.lua b/gamemodes/terrortown/gamemode/client/cl_vskin/vgui/dlabel_ttt2.lua index 2dd231770..56056efb7 100644 --- a/gamemodes/terrortown/gamemode/client/cl_vskin/vgui/dlabel_ttt2.lua +++ b/gamemodes/terrortown/gamemode/client/cl_vskin/vgui/dlabel_ttt2.lua @@ -755,6 +755,7 @@ end -- @return boolean Corner radius state for the top right corner -- @return boolean Corner radius state for the bottom left corner -- @return boolean Corner radius state for the bottom right corner +-- @realm client function PANEL:GetCornerRadius() return self.m_bCornerRadiusTopLeft or false, self.m_bCornerRadiusTopRight or false, diff --git a/lua/ttt2/libraries/none.lua b/lua/ttt2/libraries/none.lua index 49fb92d8b..2e5ea0176 100644 --- a/lua/ttt2/libraries/none.lua +++ b/lua/ttt2/libraries/none.lua @@ -226,6 +226,7 @@ end --- -- Returns the metatable of the base class if a baseclass exists of this panel. -- Can be used to call functions on the base. +-- @param string name The name of the DPanel class -- @return Panel The base class meta table -- @realm shared function DBase(name)