aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim.Framework/Types/AgentCiruitData.cs
blob: 731458619c15d1e3deef1ec0c4fe5115a4eb8123 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Collections.Generic;
using System.Text;
using libsecondlife;

namespace OpenSim.Framework.Types
{
    public class AgentCircuitData
    {
        public AgentCircuitData() { }
        public LLUUID AgentID;
        public LLUUID SessionID;
        public LLUUID SecureSessionID;
        public LLVector3 startpos;
        public string firstname;
        public string lastname;
        public uint circuitcode;
        public bool child;
        public LLUUID InventoryFolder;
        public LLUUID BaseFolder;
    }
}