aboutsummaryrefslogtreecommitdiff
path: root/src/mainMenu.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainMenu.h')
-rw-r--r--src/mainMenu.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/mainMenu.h b/src/mainMenu.h
deleted file mode 100644
index c8bae78..0000000
--- a/src/mainMenu.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#include "gameCommon.h"
-
-#ifndef MAIN_MENU_H
-#define MAIN_MENU_H
-
-typedef struct MainMenu {
- Vector2 logoPosition;
- Texture2D * logoTexture;
-
- Rectangle startButton;
- Rectangle howToPlayButton;
-} MainMenu;
-
-void initMainMenu(Game * game);
-void updateMainMenu(Game * game);
-void resizeMainMenu(Game * game, MainMenu * mainMenu);
-
-#endif