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,18 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace OpenSim.Scripting.EmbeddedJVM
{
public class MainMemory
{
public Heap HeapArea;
public MethodMemory MethodArea;
public MainMemory()
{
MethodArea = new MethodMemory();
HeapArea = new Heap();
}
}
}