SNAKE GAME

Dependencies:   mbed wave_player 4DGL-uLCD-SE MMA8452

speech.h

Committer:
congvu
Date:
2020-11-25
Revision:
0:24041b847eb5

File content as of revision 0:24041b847eb5:

#ifndef SPEECH_H
#define SPEECH_H

/**
 * Display a speech bubble.
 */
void speech(const char* line1, const char* line2);

/**
 * Display a long speech bubble, with scrolling.
 * 
 * @param lines The actual lines of text to display
 * @param n The number of lines to display.
 */
void long_speech(const char* lines[], int n);

#endif // SPEECH_H