mirror of
git://opensimulator.org/git/opensim
synced 2026-08-15 09:32:16 +00:00
Currently the vm is at a early stage and very limited: currently only supports static methods (instance methods support is nearly finished though) currently a class can't have member variables, so currently only local variables in the methods. Also in this branch, connecting the vm to opensim is not completely finished: it is being uploaded just for viewing purposes.
27 lines
589 B
C#
27 lines
589 B
C#
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 bool online;
|
|
|
|
public SimProfileBase()
|
|
{
|
|
}
|
|
}
|
|
}
|