Operand.cs 244 B

1234567891011121314
  1. using System;
  2. using System.IO;
  3. namespace Spv.Generator
  4. {
  5. public interface Operand : IEquatable<Operand>
  6. {
  7. OperandType Type { get; }
  8. ushort WordCount { get; }
  9. void WriteOperand(BinaryWriter writer);
  10. }
  11. }