aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/MessagingServer/IMessageRegionService.cs
blob: 907e89d6a2f017f191f68588cac9eaa526cb7639 (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;
using OpenSim.Data;

namespace OpenSim.Grid.MessagingServer
{
    public interface IMessageRegionService
    {
        int ClearRegionCache();
        RegionProfileData GetRegionInfo(ulong regionhandle);
    }
}