Game For ECE 2035

Dependencies:   mbed wave_player 4DGL-uLCD-SE MMA8452

speech.h

Committer:
nasiromar
Date:
2021-11-19
Revision:
6:c9695079521d
Parent:
0:35660d7952f7
Child:
14:7225da81314a

File content as of revision 6:c9695079521d:

#ifndef SPEECH_H
#define SPEECH_H

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


void vertical_speech(const char* line1, const char* line2, const char* line3);


 void erase_horizontal_speech_bubble();
 void erase_vertical_speech_bubble();

/**
 * Display a long speech bubble (more than 2 lines).
 * 
 * @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