OpenSimMirror/OpenSim.Framework/Types/AgentCiruitData.cs

21 lines
484 B
C#
Raw Normal View History

2007-03-22 10:11:15 +00:00
using System;
using System.Collections.Generic;
using System.Text;
using libsecondlife;
namespace OpenSim.Framework.Types
2007-03-22 10:11:15 +00:00
{
public class AgentCircuitData
{
public AgentCircuitData() { }
public LLUUID AgentID;
public LLUUID SessionID;
public LLUUID SecureSessionID;
public LLVector3 startpos;
2007-03-22 10:11:15 +00:00
public string firstname;
public string lastname;
public uint circuitcode;
public bool child;
2007-03-22 10:11:15 +00:00
}
}