Files
PCPal/PCPalConfigurator/Rendering/PreviewElement.cs
2025-04-14 12:46:10 -04:00

15 lines
361 B
C#

using System.Drawing;
namespace PCPalConfigurator.Rendering
{
/// <summary>
/// Base class for all OLED preview elements
/// </summary>
public abstract class PreviewElement
{
/// <summary>
/// Draws the element on the provided graphics context
/// </summary>
public abstract void Draw(Graphics g);
}
}