brought zircon branch into trunk

This commit is contained in:
gareth
2007-03-22 10:11:15 +00:00
parent b83efd4947
commit 7daa3955bc
254 changed files with 23148 additions and 6670 deletions

View File

@@ -0,0 +1,25 @@
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;
public SimProfileBase()
{
}
}
}