2007-04-03 16:50:17 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Text;
|
|
|
|
using libsecondlife;
|
|
|
|
|
|
|
|
namespace OpenSim.RegionServer.world.scripting
|
|
|
|
{
|
|
|
|
public interface IScriptContext
|
|
|
|
{
|
2007-04-03 19:12:07 +00:00
|
|
|
IScriptEntity Entity { get; }
|
|
|
|
bool TryGetRandomAvatar(out IScriptReadonlyEntity avatar);
|
2007-04-03 16:50:17 +00:00
|
|
|
}
|
|
|
|
}
|