1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using OpenSim.Framework;
- using OpenMetaverse;
- namespace OpenSim.Services.Interfaces
- {
- public interface ILandService
- {
- LandData GetLandData(UUID scopeID, ulong regionHandle, uint x, uint y, out byte regionAccess);
- }
- }
|