mirror of
https://github.com/komiko44240BB/BattleBay_tool_v1.0.git
synced 2026-01-18 16:27:29 +01:00
32 lines
431 B
C
32 lines
431 B
C
#ifndef MENU_H
|
|
#define MENU_H
|
|
|
|
|
|
|
|
|
|
void start();
|
|
void clearInputBuffer();
|
|
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();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif |