mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-07 17:15:26 +00:00
Also add a Tool base class, and an empty BucketTool subclass which is the next thing to implement.
10 lines
55 B
C++
10 lines
55 B
C++
#include "Tool.h"
|
|
|
|
Tool::Tool()
|
|
{
|
|
}
|
|
|
|
Tool::~Tool()
|
|
{
|
|
}
|