Emoji.h 284 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (c) 2019-2020, Sergey Bugaev <bugaevc@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <AK/Types.h>
  8. namespace Gfx {
  9. class Bitmap;
  10. class Emoji {
  11. public:
  12. static const Gfx::Bitmap* emoji_for_code_point(u32 code_point);
  13. };
  14. }