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