mirror of
https://github.com/opensim/opensim.git
synced 2026-07-25 09:25:39 +08:00
* 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[?]
15 lines
322 B
C#
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; }
|
|
}
|
|
}
|