2007-05-04 03:25:20 +00:00
|
|
|
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();
|
2007-05-04 04:19:30 +00:00
|
|
|
void Close();
|
2007-05-04 03:25:20 +00:00
|
|
|
}
|
|
|
|
}
|