Files
serenity/Userland/Libraries/LibGfx/LineStyle.h
Andreas Kling 2ee0808b7e LibGfx: Move Gfx::Painter::LineStyle => Gfx::LineStyle
(cherry picked from commit 0e47e5e2657585c8aadf34a7d62a9d6c9f836b7d,
amended to add a forwarding enum to Painter.h until the rest of
our code is migrated)
2024-10-01 19:53:31 -04:00

18 lines
207 B
C++

/*
* Copyright (c) 2024, Andreas Kling <andreas@ladybird.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
namespace Gfx {
enum class LineStyle {
Solid,
Dotted,
Dashed,
};
}