mirror of
https://github.com/opensim/opensim.git
synced 2026-06-03 09:06:32 +08:00
Status: * Prebuild will be broken, someone needs to update prebuild.xml with the new dependencies. * The sim status check function does not yet function. * Sims must be manually added to the database - automatic insertion isnt supported yet.
18 lines
499 B
C#
18 lines
499 B
C#
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();
|
|
string getName();
|
|
string getVersion();
|
|
}
|
|
}
|