Snake

Dependencies:   mbed wave_player 4DGL-uLCD-SE MMA8452

Committer:
congvu
Date:
Mon Nov 23 05:54:49 2020 +0000
Revision:
3:2fe73b263a9a
Parent:
1:10330bce85cb
ECE2035;

Who changed what in which revision?

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