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

@@ -70,9 +70,10 @@ namespace OpenSim.Region.ScriptEngine.Common
private DateTime m_timer = DateTime.Now;
private string m_state = "default";
public string State()
public string State
{
return m_state;
get { return m_state; }
set { m_state = value; }
}
// Object never expires