restructure

This commit is contained in:
NinjaPug
2025-04-14 12:46:10 -04:00
parent 1cf596b379
commit 21b6ad3d75
22 changed files with 1257 additions and 990 deletions

View File

@@ -0,0 +1,15 @@
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);
}
}