ladybird/Applications/PaintBrush/Tool.cpp
Andreas Kling 56cbe15033 PaintBrush: Factor out the pen tool into an actual PenTool class.
Also add a Tool base class, and an empty BucketTool subclass which is the
next thing to implement.
2019-06-14 18:51:57 +02:00

10 lines
55 B
C++

#include "Tool.h"
Tool::Tool()
{
}
Tool::~Tool()
{
}