Files
opensim/OpenSim/Region/OptionalModules/Scripting/Minimodule/IParcel.cs
2009-04-06 14:24:13 +00:00

16 lines
348 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using OpenMetaverse;
namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
{
public interface IParcel
{
string Name { get; set; }
string Description { get; set; }
ISocialEntity Owner { get; set; }
bool[,] Bitmap { get; }
}
}