Add treenode:GetOpen

This commit is contained in:
Kenny Shields 2014-07-01 21:10:46 -04:00
parent e3a8654b5d
commit c6776e3158

View File

@ -259,4 +259,14 @@ function newobject:SetOpen(bool)
self.open = bool
return self
end
--[[---------------------------------------------------------
- func: GetOpen()
- desc: gets whether or not the object is open
--]]---------------------------------------------------------
function newobject:GetOpen()
return self.open
end