blob: e6878d18927049f9dc494f575f6ba23812327ad8 (
plain)
1
2
3
4
5
6
7
8
9
|
namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
{
public interface ISecurityCredential
{
ISocialEntity owner { get; }
bool CanEditObject(IObject target);
bool CanEditTerrain(int x, int y);
}
}
|