* Minor cosmetic change to SEUser to get Bamboo to initiate another build. (grr)
* Adds basic IParcel interface. Soon to live on World.Parcels{[id],[x,y]}0.6.5-rc1
parent
dc967b16a4
commit
51419d21e4
|
@ -0,0 +1,14 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Text;
|
||||||
|
using OpenMetaverse;
|
||||||
|
|
||||||
|
namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
|
||||||
|
{
|
||||||
|
interface IParcel
|
||||||
|
{
|
||||||
|
string Name { get; set; }
|
||||||
|
string Description { get; set; }
|
||||||
|
ISocialEntity Owner { get; set; }
|
||||||
|
}
|
||||||
|
}
|
|
@ -12,8 +12,8 @@ namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
|
||||||
|
|
||||||
public SEUser(UUID uuid, string name)
|
public SEUser(UUID uuid, string name)
|
||||||
{
|
{
|
||||||
this.m_uuid = uuid;
|
m_uuid = uuid;
|
||||||
this.m_name = name;
|
m_name = name;
|
||||||
}
|
}
|
||||||
|
|
||||||
public UUID GlobalID
|
public UUID GlobalID
|
||||||
|
|
Loading…
Reference in New Issue