diff options
author | tlatorre <tlatorre@uchicago.edu> | 2022-11-12 12:56:14 -0600 |
---|---|---|
committer | tlatorre <tlatorre@uchicago.edu> | 2022-11-12 12:56:14 -0600 |
commit | 29a7aacc5273d70c94cef0b6077dde574d8e3a4a (patch) | |
tree | 7e2e21a1d64c65c8eb6c3915642351ea6cd7fbd2 /vito.c | |
parent | 0a4b2d0dd49c7b4c18bdbaa8aa044397f6414d57 (diff) | |
download | moji-29a7aacc5273d70c94cef0b6077dde574d8e3a4a.tar.gz moji-29a7aacc5273d70c94cef0b6077dde574d8e3a4a.tar.bz2 moji-29a7aacc5273d70c94cef0b6077dde574d8e3a4a.zip |
add more emoji
Diffstat (limited to 'vito.c')
-rw-r--r-- | vito.c | 20 |
1 files changed, 17 insertions, 3 deletions
@@ -18,10 +18,17 @@ static void aeGetTime(long *seconds, long *milliseconds) GtkWidget *text_widget; GtkTextTag *tag; +#define ROLLING_EYES "\xf0\x9f\x99\x84" +#define OVERHEATED "\xf0\x9f\xa5\xb5" +#define FREEZING "\xf0\x9f\xa5\xb6" +#define NAUSEOUS "\xf0\x9f\xa4\xa2" +#define THINKING "\xf0\x9f\xa4\x94" +#define THUMBS_UP "\xf0\x9f\x91\x8d" +#define THUMBS_DOWN "\xf0\x9f\x91\x8e" #define LEFT_ARROW "\xe2\x86\x90" #define CLEAR_SCREEN "\xe2\x8e\x9a" #define SOUND "\xf0\x9f\x94\x8a" -#define DRINK "\xf0\x9f\x9a\xb0" +#define DROPLET "\xf0\x9f\x92\xa7" #define FOOD "\xf0\x9f\x8d\xb2" #define TIRED "\xf0\x9f\x98\xab" #define HAPPY "\xf0\x9f\x98\x80" @@ -29,11 +36,18 @@ GtkTextTag *tag; #define NEWLINE "\xe2\x86\xb5" const char *alphabet[] = { - DRINK, - FOOD, + THINKING, + THUMBS_UP, + THUMBS_DOWN, HAPPY, LAUGHING, TIRED, + FREEZING, + OVERHEATED, + NAUSEOUS, + ROLLING_EYES, + //DROPLET, + //FOOD, "a", "b", "c", |