1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
namespace Ryujinx.Audio.Renderer.Dsp.Command { public interface ICommand { public bool Enabled { get; set; } public int NodeId { get; } public CommandType CommandType { get; } public uint EstimatedProcessingTime { get; } public void Process(CommandList context); public bool ShouldMeter() { return false; } } }