ColorPickerUpdateState.h 232 B

12345678910111213141516
  1. /*
  2. * Copyright (c) 2023, Bastiaan van der Plaat <bastiaan.v.d.plaat@gmail.com>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. namespace Web::HTML {
  8. enum class ColorPickerUpdateState {
  9. Update,
  10. Closed,
  11. };
  12. }