Attempt to rearrange some of the directories

This commit is contained in:
MW
2007-04-11 13:32:50 +00:00
parent 2f3b6c4b10
commit 00b7058e00
38 changed files with 85 additions and 100 deletions

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace OpenSim.Scripting.EmbeddedJVM
{
public class MethodMemory
{
public byte[] MethodBuffer;
public List<ClassRecord> Classes = new List<ClassRecord>();
public int NextMethodPC = 0;
public int Methodcount = 0;
public MethodMemory()
{
MethodBuffer = new byte[20000];
}
}
}