summaryrefslogtreecommitdiffstats
path: root/src/cmdtoken.h
diff options
context:
space:
mode:
authorPiotr Dziwinski <piotrdz@gmail.com>2012-03-23 21:02:53 +0100
committerPiotr Dziwinski <piotrdz@gmail.com>2012-03-23 21:02:53 +0100
commitfe7a90ac34de28e30863a1257319f85a5e662286 (patch)
treef0aa10e228ff779f77ad1a8aeb5257388ad1c084 /src/cmdtoken.h
parent519efddc9b7b557e63403f090a244b3b7063e48f (diff)
downloadcolobot-fe7a90ac34de28e30863a1257319f85a5e662286.tar.gz
colobot-fe7a90ac34de28e30863a1257319f85a5e662286.tar.bz2
colobot-fe7a90ac34de28e30863a1257319f85a5e662286.zip
Fixed includes and GCC syntax errors
Diffstat (limited to 'src/cmdtoken.h')
-rw-r--r--src/cmdtoken.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/cmdtoken.h b/src/cmdtoken.h
index 76ee7f5..40fb36a 100644
--- a/src/cmdtoken.h
+++ b/src/cmdtoken.h
@@ -14,15 +14,18 @@
// * You should have received a copy of the GNU General Public License
// * along with this program. If not, see http://www.gnu.org/licenses/.
+// cmdtoken.h
+
#ifndef _CMDTOKEN_H_
#define _CMDTOKEN_H_
-
-enum ObjectType;
-enum WaterType;
-enum PyroType;
-enum CameraType;
+#include "d3denum.h"
+#include "d3dengine.h"
+#include "object.h"
+#include "water.h"
+#include "pyro.h"
+#include "camera.h"