mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 06:06:06 +08:00
Start of rewrite 5279!
This commit is contained in:
19
OpenSim/OpenSim.Scripting/EmbeddedJVM/MethodMemory.cs
Normal file
19
OpenSim/OpenSim.Scripting/EmbeddedJVM/MethodMemory.cs
Normal 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];
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user