mirror of
https://github.com/opensim/opensim.git
synced 2026-05-30 22:37:13 +08:00
12 lines
240 B
C#
12 lines
240 B
C#
using System;
|
|
using OpenSim.Data;
|
|
|
|
namespace OpenSim.Grid.MessagingServer
|
|
{
|
|
public interface IMessageRegionService
|
|
{
|
|
int ClearRegionCache();
|
|
RegionProfileData GetRegionInfo(ulong regionhandle);
|
|
}
|
|
}
|