mirror of
https://github.com/opensim/opensim.git
synced 2026-05-20 23:35:47 +08:00
19 lines
392 B
C#
19 lines
392 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using OpenSim.Scripting.EmbeddedJVM.Types;
|
|
|
|
namespace OpenSim.Scripting.EmbeddedJVM
|
|
{
|
|
public class ClassInstance : Object
|
|
{
|
|
public int size;
|
|
public Dictionary<string, BaseType> Fields = new Dictionary<string, BaseType>();
|
|
|
|
public ClassInstance()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|