1
0

Stack.cs 278 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace OpenSim.Scripting.EmbeddedJVM
  5. {
  6. public class Stack
  7. {
  8. public Stack<StackFrame> StackFrames = new Stack<StackFrame>();
  9. public Stack()
  10. {
  11. }
  12. }
  13. }