IJumpToOpcode.cs 208 B

1234567891011
  1. namespace OpenVIII.Fields.Scripts.Instructions
  2. {
  3. public interface IJumpToOpcode : IJumpToInstruction
  4. {
  5. #region Properties
  6. int Offset { get; }
  7. #endregion Properties
  8. }
  9. }