Files
opensim/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IEntity.cs
Adam Frisby b8619386eb * Minor MRM Cleanup
* Interfaces now live in Interfaces subdirectory. 
* Namespace does not yet reflect this change.
* Final namespace for MRMs will probably sit somewhere around OpenSim.Extend.MRM[?]
2009-04-11 10:21:04 +00:00

15 lines
322 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using OpenMetaverse;
namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
{
public interface IEntity
{
string Name { get; set; }
UUID GlobalID { get; }
Vector3 WorldPosition { get; set; }
}
}