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