mirror of
https://github.com/opensim/opensim.git
synced 2026-05-20 23:35:47 +08:00
14 lines
306 B
C#
14 lines
306 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using libsecondlife;
|
|
|
|
namespace OpenSim.RegionServer.world.scripting
|
|
{
|
|
public interface IScriptContext
|
|
{
|
|
IScriptEntity Entity { get; }
|
|
bool TryGetRandomAvatar(out IScriptReadonlyEntity avatar);
|
|
}
|
|
}
|