ICommand.cs 404 B

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