Nasir Christian / Mbed 2 deprecated rpg_game_shell_FA21_Nasir

Dependencies:   mbed wave_player 4DGL-uLCD-SE MMA8452

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers speech.h Source File

speech.h

00001 #ifndef SPEECH_H
00002 #define SPEECH_H
00003 
00004 /**
00005  * Display a speech bubble.
00006  */
00007 void horizontal_speech1(const char* line1, const char* line2);
00008 void horizontal_speech2(const char* line1, const char* line2);
00009 
00010 
00011 void vertical_speech1(const char* line1, const char* line2, const char* line3);
00012 void vertical_speech2(const char* line1, const char* line2, const char* line3);
00013 
00014 
00015  void erase_horizontal_speech_bubble();
00016  void erase_vertical_speech_bubble();
00017 
00018 /**
00019  * Display a long speech bubble (more than 2 lines).
00020  * 
00021  * @param lines The actual lines of text to display
00022  * @param n The number of lines to display.
00023  */
00024 void long_speech(const char* lines[], int n);
00025 
00026 #endif // SPEECH_H