summaryrefslogtreecommitdiff
path: root/Gameplay.h
diff options
context:
space:
mode:
authorXaviDCR92 <xavi.dcr@gmail.com>2018-07-09 19:26:13 +0200
committerXaviDCR92 <xavi.dcr@gmail.com>2018-07-09 19:26:13 +0200
commitf0b654b9bf3bc2a93c1f89d4cc3edcf77b948555 (patch)
tree91b7404dca0b6eb136cb7f9b144435419144b777 /Gameplay.h
parentd85464781580796bbcc744ae732e56d1920e3b0f (diff)
downloadpocketempires-f0b654b9bf3bc2a93c1f89d4cc3edcf77b948555.tar.gz
Game has been restructured in favor of OOP
Diffstat (limited to 'Gameplay.h')
-rw-r--r--Gameplay.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/Gameplay.h b/Gameplay.h
deleted file mode 100644
index b7179c2..0000000
--- a/Gameplay.h
+++ /dev/null
@@ -1,33 +0,0 @@
-#ifndef __GAMEPLAY_H__
-#define __GAMEPLAY_H__
-
-/* **************************************
- * Includes *
- * **************************************/
-
-#include "Global_Inc.h"
-#include "Player.h"
-
-/* **************************************
- * Defines *
- * **************************************/
-
-#define GAME_MAX_PLAYERS 1
-
-/* **************************************
- * Structs and enums *
- * **************************************/
-
-/* **************************************
- * Global prototypes *
- * **************************************/
-
-void GameInit(void);
-
-/* **************************************
- * Global variables *
- * **************************************/
-
-extern Player GamePlayers[GAME_MAX_PLAYERS];
-
-#endif // __GAMEPLAY_H__