Skip to content

Commit

Permalink
Cleanup SimpleDelay sample
Browse files Browse the repository at this point in the history
  • Loading branch information
xoofx committed Dec 19, 2022
1 parent 54af66b commit 3a60d9a
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 10 deletions.
2 changes: 1 addition & 1 deletion samples/NPlug.SimpleDelay/SimpleDelayController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ namespace NPlug.SimpleDelay;
public class SimpleDelayController : AudioController<SimpleDelayModel>
{
public static readonly Guid ClassId = new("484e783b-5f47-42f4-a19f-96c1fd42fb45");
}
}
7 changes: 0 additions & 7 deletions samples/NPlug.SimpleDelay/SimpleDelayModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,3 @@ public SimpleDelayModel() : base("NPlug.SimpleDelay")

public AudioParameter Delay { get; }
}

public static class Program
{
public static void Main()
{
}
}
2 changes: 1 addition & 1 deletion samples/NPlug.SimpleDelay/SimpleDelayPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ internal static void ExportThisPlugin()
{
AudioPluginFactoryExporter.Instance = GetFactory();
}
}
}
2 changes: 1 addition & 1 deletion samples/NPlug.SimpleDelay/SimpleDelayProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,4 @@ protected override void ProcessMain(in AudioProcessData data)
_bufferPosition -= delayInSamples;
}
}
}
}

0 comments on commit 3a60d9a

Please sign in to comment.