diff options
author | tlatorre <tlatorre@uchicago.edu> | 2022-11-12 14:32:06 -0600 |
---|---|---|
committer | tlatorre <tlatorre@uchicago.edu> | 2022-11-12 14:32:06 -0600 |
commit | 8b221f68ed06c4b0866191771789e9a3414a5076 (patch) | |
tree | bbdf0a1f79346883a4a9b3ba4281f94693dbe26c /vito.c | |
parent | f5738981f08e4988c6a22d40a0cf2018a6c5f047 (diff) | |
download | moji-8b221f68ed06c4b0866191771789e9a3414a5076.tar.gz moji-8b221f68ed06c4b0866191771789e9a3414a5076.tar.bz2 moji-8b221f68ed06c4b0866191771789e9a3414a5076.zip |
add more emoji
Diffstat (limited to 'vito.c')
-rw-r--r-- | vito.c | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -22,6 +22,12 @@ static void aeGetTime(long *seconds, long *milliseconds) GtkWidget *text_widget; GtkTextTag *tag; +#define STOP "\xf0\x9f\x9b\x91" +#define THANK_YOU "\xf0\x9f\x99\x8f" +#define UNAMUSED "\xf0\x9f\x98\x92" +#define SLEEPING "\xf0\x9f\x98\xb4" +#define BED "\xf0\x9f\x9b\x8f" +#define CHAIR "\xf0\x9f\xaa\x91" #define NURSE "\xf0\x9f\x91\xa9\xe2\x80\x8d\xe2\x9a\x95\xef\xb8\x8f" #define ROLLING_EYES "\xf0\x9f\x99\x84" #define OVERHEATED "\xf0\x9f\xa5\xb5" @@ -50,6 +56,7 @@ const char *emoji_array[] = { THINKING, THUMBS_UP, THUMBS_DOWN, + STOP, HAPPY, LAUGHING, TIRED, @@ -57,8 +64,13 @@ const char *emoji_array[] = { OVERHEATED, NAUSEOUS, ROLLING_EYES, + SLEEPING, + UNAMUSED, + THANK_YOU, NURSE, - //DROPLET, + DROPLET, + CHAIR, + BED, //FOOD, LEFT_ARROW, CLEAR_SCREEN, |