aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenGrid.Framework.Data/GridData.cs
blob: d6b5a2b82168359df900b175804f21aec12f7fa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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();
    }
}