dos33fsprogs/utils/gr-sim/tfv/tfv_game_over.c
Vince Weaver b1238af49d re-arranged the entire directory structure
this will probably upset people
2021-01-05 15:29:31 -05:00

31 lines
407 B
C

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include "gr-sim.h"
#include "tfv_utils.h"
#include "tfv_zp.h"
#include "tfv_defines.h"
#include "tfv_backgrounds.h"
void game_over(void) {
text();
home();
/* Make a box around it? */
vtab(12);
htab(15);
move_cursor();
print("GAME OVER");
/* play the GROAN sound? */
page_flip();
repeat_until_keypressed();
}