blob: 9bc2ce356500998b52a1e63ba21d8b91cc864c89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System;
using System.Collections.Generic;
using System.Text;
namespace OpenGrid.Framework.Data
{
public interface IGridData
{
SimProfileData GetProfileByHandle(ulong regionHandle);
SimProfileData GetProfileByLLUUID(libsecondlife.LLUUID UUID);
bool AuthenticateSim(libsecondlife.LLUUID UUID, ulong regionHandle, string simrecvkey);
void Initialise();
}
}
|