2007-03-22 10:11:15 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Text;
|
|
|
|
using libsecondlife;
|
|
|
|
|
|
|
|
namespace OpenSim.Framework.Sims
|
|
|
|
{
|
|
|
|
public class SimProfileBase
|
|
|
|
{
|
|
|
|
public LLUUID UUID;
|
|
|
|
public ulong regionhandle;
|
|
|
|
public string regionname;
|
|
|
|
public string sim_ip;
|
|
|
|
public uint sim_port;
|
|
|
|
public string caps_url;
|
|
|
|
public uint RegionLocX;
|
|
|
|
public uint RegionLocY;
|
|
|
|
public string sendkey;
|
|
|
|
public string recvkey;
|
2007-04-02 09:09:00 +00:00
|
|
|
public bool online;
|
2007-03-22 10:11:15 +00:00
|
|
|
|
|
|
|
public SimProfileBase()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|