mirror of
https://github.com/SDRSharpR/SDRSharp.git
synced 2026-03-10 15:03:54 +01:00
10 lines
110 B
C#
10 lines
110 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace SDRSharp.FrequencyEdit
|
|||
|
|
{
|
|||
|
|
internal interface IRenderable
|
|||
|
|
{
|
|||
|
|
void Render();
|
|||
|
|
}
|
|||
|
|
}
|