Ryujinx/SpvGen/Operand.cs
2022-06-17 22:42:30 +01:00

14 lines
238 B
C#

using System;
using System.IO;
namespace Spv.Generator
{
public interface Operand : IEquatable<Operand>
{
OperandType Type { get; }
ushort WordCount { get; }
void WriteOperand(Stream stream);
}
}