| 123456789101112131415161718192021222324252627282930313233 |
- namespace OpenVIII.Fields.Scripts.Instructions
- {
- /// <summary>
- /// Turn Particleoff
- /// </summary>
- /// <see cref="http://wiki.ffrtt.ru/index.php?title=FF8/Field/Script/Opcodes/14F_PARTICLEOFF&action=edit&redlink=1"/>
- public sealed class PARTICLEOFF : JsmInstruction
- {
- #region Fields
- private readonly IJsmExpression _arg0;
- #endregion Fields
- #region Constructors
- public PARTICLEOFF(IJsmExpression arg0) => _arg0 = arg0;
- public PARTICLEOFF(int parameter, IStack<IJsmExpression> stack)
- : this(
- arg0: stack.Pop())
- {
- }
- #endregion Constructors
- #region Methods
- public override string ToString() => $"{nameof(PARTICLEOFF)}({nameof(_arg0)}: {_arg0})";
- #endregion Methods
- }
- }
|