mirror of
https://git.ryujinx.app/kenji-nx/ryujinx.git
synced 2025-12-22 04:37:05 +00:00
14 lines
243 B
C#
14 lines
243 B
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace Spv.Generator
|
|
{
|
|
public interface IOperand : IEquatable<IOperand>
|
|
{
|
|
OperandType Type { get; }
|
|
|
|
ushort WordCount { get; }
|
|
|
|
void WriteOperand(BinaryWriter writer);
|
|
}
|
|
}
|