blob: 8ace484cecde6156a17bf7142f673d22d41ef522 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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();
void Close();
}
}
|