OpenSimMirror/OpenSim.Scripting.EmbeddedJVM/Types/ObjectReference.cs

17 lines
278 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OpenSim.Scripting.EmbeddedJVM.Types
{
public class ObjectReference : BaseType
{
public ushort Reference;
public ObjectReference()
{
}
}
}