Update svn properties.

This commit is contained in:
Jeff Ames
2009-04-01 14:50:18 +00:00
parent a1fe54baa0
commit 99cfcf405b
8 changed files with 615 additions and 615 deletions

View File

@@ -1,37 +1,37 @@
using OpenMetaverse;
using OpenSim.Region.Framework.Scenes;
namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
{
class SPAvatar : IAvatar
{
private readonly Scene m_rootScene;
private readonly UUID m_ID;
public SPAvatar(Scene scene, UUID ID)
{
m_rootScene = scene;
m_ID = ID;
}
private ScenePresence GetSP()
{
return m_rootScene.GetScenePresence(m_ID);
}
public string Name
{
get { return GetSP().Name; }
}
public UUID GlobalID
{
get { return m_ID; }
}
public Vector3 Position
{
get { return GetSP().AbsolutePosition; }
}
}
}
using OpenMetaverse;
using OpenSim.Region.Framework.Scenes;
namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
{
class SPAvatar : IAvatar
{
private readonly Scene m_rootScene;
private readonly UUID m_ID;
public SPAvatar(Scene scene, UUID ID)
{
m_rootScene = scene;
m_ID = ID;
}
private ScenePresence GetSP()
{
return m_rootScene.GetScenePresence(m_ID);
}
public string Name
{
get { return GetSP().Name; }
}
public UUID GlobalID
{
get { return m_ID; }
}
public Vector3 Position
{
get { return GetSP().AbsolutePosition; }
}
}
}