GETHP.cs 425 B

1234567891011121314151617
  1. using System;
  2. namespace OpenVIII.Fields.Scripts.Instructions
  3. {
  4. /// <summary>
  5. /// unused: Get HP?
  6. /// </summary>
  7. /// <see cref="http://wiki.ffrtt.ru/index.php?title=FF8/Field/Script/Opcodes/147_GETHP&action=edit&redlink=1"/>
  8. public sealed class GETHP : JsmInstruction
  9. {
  10. #region Constructors
  11. public GETHP() => throw new NotSupportedException();
  12. #endregion Constructors
  13. }
  14. }