mirror of
https://github.com/RGBCube/serenity
synced 2025-05-30 02:15:08 +00:00

Also add a Tool base class, and an empty BucketTool subclass which is the next thing to implement.
9 lines
55 B
C++
9 lines
55 B
C++
#include "Tool.h"
|
|
|
|
Tool::Tool()
|
|
{
|
|
}
|
|
|
|
Tool::~Tool()
|
|
{
|
|
}
|