We now support LSL state

This commit is contained in:
Tedd Hansen
2008-02-10 22:25:59 +00:00
parent c935b308e6
commit 9a04e0e1c4
5 changed files with 9 additions and 7 deletions

View File

@@ -102,9 +102,10 @@ namespace OpenSim.Region.ScriptEngine.Common
{
}
public string State()
public string State
{
return m_LSL_Functions.State();
get { return m_LSL_Functions.State; }
set { m_LSL_Functions.State = value; }
}