Move solution and projects to src
This commit is contained in:
20
src/Ryujinx.Audio/Renderer/Dsp/Command/ICommand.cs
Normal file
20
src/Ryujinx.Audio/Renderer/Dsp/Command/ICommand.cs
Normal file
@ -0,0 +1,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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user