Game For ECE 2035

Dependencies:   mbed wave_player 4DGL-uLCD-SE MMA8452

speech.h

Committer:
nasiromar
Date:
2021-12-03
Revision:
14:7225da81314a
Parent:
6:c9695079521d

File content as of revision 14:7225da81314a:

#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_speech1(const char* line1, const char* line2, const char* line3);
void vertical_speech2(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