DEBUG.cs 216 B

123456789101112
  1. using System;
  2. namespace OpenVIII.Fields.Scripts.Instructions
  3. {
  4. internal sealed class DEBUG : JsmInstruction
  5. {
  6. public DEBUG()
  7. {
  8. throw new NotSupportedException();
  9. }
  10. }
  11. }