mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 06:06:06 +08:00
Renamed the new Directories. (removed the "-Source" from the end of them)
This commit is contained in:
18
OpenSim/OpenSim.Scripting/EmbeddedJVM/ClassInstance.cs
Normal file
18
OpenSim/OpenSim.Scripting/EmbeddedJVM/ClassInstance.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
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()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user