khoa phan test

Dependencies:   4DGL-uLCD-SE MMA8452 mbed wave_player

Fork of rpg_game_shell by ECE 2035 TA

Committer:
kphan9
Date:
Sun Apr 22 02:27:42 2018 +0000
Revision:
2:2f32fe4dadab
Parent:
0:35660d7952f7
test

Who changed what in which revision?

UserRevisionLine numberNew contents of line
rconnorlawson 0:35660d7952f7 1 #ifndef SPEECH_H
rconnorlawson 0:35660d7952f7 2 #define SPEECH_H
rconnorlawson 0:35660d7952f7 3
rconnorlawson 0:35660d7952f7 4 /**
rconnorlawson 0:35660d7952f7 5 * Display a speech bubble.
rconnorlawson 0:35660d7952f7 6 */
rconnorlawson 0:35660d7952f7 7 void speech(const char* line1, const char* line2);
rconnorlawson 0:35660d7952f7 8
rconnorlawson 0:35660d7952f7 9 /**
rconnorlawson 0:35660d7952f7 10 * Display a long speech bubble (more than 2 lines).
rconnorlawson 0:35660d7952f7 11 *
rconnorlawson 0:35660d7952f7 12 * @param lines The actual lines of text to display
rconnorlawson 0:35660d7952f7 13 * @param n The number of lines to display.
rconnorlawson 0:35660d7952f7 14 */
rconnorlawson 0:35660d7952f7 15 void long_speech(const char* lines[], int n);
rconnorlawson 0:35660d7952f7 16
rconnorlawson 0:35660d7952f7 17 #endif // SPEECH_H