mirror of
https://github.com/opensim/opensim.git
synced 2026-05-19 14:35:44 +08:00
18 lines
507 B
C#
18 lines
507 B
C#
using Axiom.Math;
|
|
using libsecondlife;
|
|
|
|
namespace OpenSim.Region.Environment.Scenes.Scripting
|
|
{
|
|
public interface IScriptHost
|
|
{
|
|
string Name { get; set; }
|
|
string SitName { get; set; }
|
|
string TouchName { get; set; }
|
|
string Description { get; set; }
|
|
LLUUID UUID { get; }
|
|
LLUUID ObjectOwner { get; }
|
|
LLUUID ObjectCreator { get; }
|
|
LLVector3 AbsolutePosition { get; }
|
|
void SetText(string text, Vector3 color, double alpha);
|
|
}
|
|
} |