* Implements "ID" semi-global within MRM scripts. This is tied to the 'state ID' for MRMs.

* Implements IPersistence interface, allows simple KeyValue access for MRM scripts to a more permanent datastore.
This commit is contained in:
Adam Frisby
2009-04-03 09:22:34 +00:00
parent 5f4cab6ed3
commit 7e91f41535
5 changed files with 45 additions and 7 deletions

View File

@@ -1,11 +1,12 @@
using System.Collections.Generic;
using System;
using System.Collections.Generic;
using OpenMetaverse;
using OpenSim.Framework;
using OpenSim.Region.Framework.Scenes;
namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
{
class SOPObject : IObject
class SOPObject : MarshalByRefObject, IObject
{
private readonly Scene m_rootScene;
private readonly uint m_localID;