* 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
Adam Frisby 2009-04-05 01:36:30 +00:00
parent dc967b16a4
commit 51419d21e4
2 changed files with 16 additions and 2 deletions

View File

@ -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; }
}
}

View File

@ -12,8 +12,8 @@ namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
public SEUser(UUID uuid, string name)
{
this.m_uuid = uuid;
this.m_name = name;
m_uuid = uuid;
m_name = name;
}
public UUID GlobalID