DEBUG.cs 528 B

123456789101112131415161718
  1. using System;
  2. namespace OpenVIII.Fields.Scripts.Instructions
  3. {
  4. /// <summary>
  5. /// <para>Debug (unused)</para>
  6. /// <para>No apparent function. Most likely, this did various things during the game's development.</para>
  7. /// </summary>
  8. /// <see cref="http://wiki.ffrtt.ru/index.php?title=FF8/Field/Script/Opcodes/01B_DEBUG"/>
  9. internal sealed class DEBUG : JsmInstruction
  10. {
  11. #region Constructors
  12. public DEBUG() => throw new NotSupportedException();
  13. #endregion Constructors
  14. }
  15. }