ANIME.cs 647 B

123456789101112131415161718192021222324252627282930
  1. namespace OpenVIII.Fields.Scripts.Instructions.Abstract
  2. {
  3. public abstract class ANIME : JsmInstruction
  4. {
  5. #region Fields
  6. /// <summary>
  7. /// Model Animation ID
  8. /// </summary>
  9. protected readonly int _animationId;
  10. #endregion Fields
  11. #region Constructors
  12. public ANIME(int animationId) => _animationId = animationId;
  13. public ANIME(int animationId, IStack<IJsmExpression> stack)
  14. : this(animationId)
  15. { }
  16. #endregion Constructors
  17. #region Methods
  18. public abstract override string ToString();
  19. #endregion Methods
  20. }
  21. }