summaryrefslogtreecommitdiff
path: root/Applications/PaintBrush/PickerTool.h
blob: 78aa59e5702d2fb2b7d4598f354cc1c53f67f633 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include "Tool.h"

class PickerTool final : public Tool {
public:
    PickerTool();
    virtual ~PickerTool() override;

    virtual void on_mousedown(GMouseEvent&) override;

private:
    virtual const char* class_name() const override { return "PickerTool"; }

};