15 lines
348 B
C#
15 lines
348 B
C#
namespace OpenMacroBoard.SDK
|
|
{
|
|
/// <summary>
|
|
/// Interface for factory extensions
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// <para>This interface is intentionally empty
|
|
/// It is used to implement factory extensions
|
|
/// <see cref="KeyBitmap.Create"/></para>
|
|
/// </remarks>
|
|
public interface IKeyBitmapFactory
|
|
{
|
|
}
|
|
}
|