mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-15 11:26:36 +02:00
(cherry picked from commit 0e47e5e2657585c8aadf34a7d62a9d6c9f836b7d, amended to add a forwarding enum to Painter.h until the rest of our code is migrated)
18 lines
207 B
C++
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,
|
|
};
|
|
|
|
}
|