Files
BattleBay_tool_v1.0/menu.h
komiko44240BB 90682d658c V0.7
Solving conflicting types issue
2024-10-03 16:54:48 +02:00

22 lines
423 B
C

#ifndef MENU_H
#define MENU_H
void start();
void startMenu();
void creatingShip();
void editingShip();
void changeObjectStats();
void changeShipType();
void changeObject();
void saveShipAs();
void saveShip(struct Ship* s);
void addObjects(struct Ship* s);
char* chooseWeapon();
char* choosePasive();
char* chooseUtility();
char* chooseHealing();
char* chooseTeal();
char* chooseRarity();
struct Perk* chosePerks();
#endif