Removed an unused function

This commit is contained in:
Charles Dang 2015-03-08 02:25:29 +11:00
parent b847cad549
commit 906ff65382
2 changed files with 0 additions and 12 deletions

View File

@ -25,7 +25,6 @@
#include "display.hpp"
#include "gettext.hpp"
#include "marked-up_text.hpp"
#include "storyscreen/interface.hpp"
void the_end(display &disp, std::string text, unsigned int duration)
{

View File

@ -57,15 +57,4 @@ enum START_POSITION {
void show_story(display &disp, const std::string &scenario_name,
const config::const_child_itors &story);
/**
* Displays a simple fading screen with any user-provided text.
* Used after the end of single-player campaigns.
*
* @param text Text to display, centered on the screen.
*
* @param duration In milliseconds, for how much time the text will
* be displayed on screen.
*/
void show_endscreen(display& disp, const t_string& text, unsigned int duration);
#endif /* ! STORYSCREEN_HPP_INCLUDED */