This commit is contained in:
2026-04-20 23:09:26 +04:30
commit 5168562271
16 changed files with 2183 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef MENU_HPP
#define MENU_HPP
#include <iostream>
struct player
{
char name[200];
char date[80];
char time[80];
int life;
int score;
bool isActive;
};
extern int option;
void menu();
void newGame();
void help();
#endif