LineStyle.h 207 B

1234567891011121314151617
  1. /*
  2. * Copyright (c) 2024, Andreas Kling <andreas@ladybird.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. namespace Gfx {
  8. enum class LineStyle {
  9. Solid,
  10. Dotted,
  11. Dashed,
  12. };
  13. }