mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-28 06:46:24 +02: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);
|
|
}
|
|
}
|