ISMEMBER.cs 222 B

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