aboutsummaryrefslogtreecommitdiff
path: root/generated/Emoji.hpp
blob: 89ebde3b0220ffc05bcef0e3ef64ee24dcc33413 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include <stdint.h>

// This file was automatically generated with generate-emoji-sprite.py, do not edit manually!

namespace QuickMedia {
    struct EmojiRectangle {
        int x, y;
        int width, height;
    };

    bool codepoint_is_emoji(uint32_t codepoint);
    EmojiRectangle emoji_get_extents(uint32_t codepoint);
}