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