Orientation.h 233 B

123456789101112131415161718
  1. /*
  2. * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. namespace Gfx {
  8. enum class Orientation {
  9. Horizontal,
  10. Vertical
  11. };
  12. }
  13. using Gfx::Orientation;