mirror of
https://github.com/dnwSilver/tld.git
synced 2024-11-26 00:52:07 +00:00
14 lines
369 B
C#
14 lines
369 B
C#
using System.Diagnostics;
|
|
using TUI.Engine.Attributes;
|
|
using TUI.Engine.Nodes;
|
|
|
|
namespace TUI.Engine.Rendering;
|
|
|
|
public abstract class CraftsmanBase
|
|
{
|
|
protected void Debug(Position pencilPosition, Size allowableSize)
|
|
{
|
|
Debugger.Log(0, "Draw", $"{pencilPosition}{GetType().Name}.\n");
|
|
Helper.ShowBackground(pencilPosition, allowableSize);
|
|
}
|
|
} |