aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim.Framework/Types/AgentCiruitData.cs
blob: 555b3b96a8ce44736fdd0aaa28b31a7542841256 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
    }
}