Add treenode:GetOpen

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

View File

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