MethodMemory.cs 445 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace OpenSim.Scripting.EmbeddedJVM
  5. {
  6. public class MethodMemory
  7. {
  8. public byte[] MethodBuffer;
  9. public List<ClassRecord> Classes = new List<ClassRecord>();
  10. public int NextMethodPC = 0;
  11. public int Methodcount = 0;
  12. public MethodMemory()
  13. {
  14. MethodBuffer = new byte[20000];
  15. }
  16. }
  17. }