From 63d54a79932a442a4e6aa2ae00eca9a7a8224df3 Mon Sep 17 00:00:00 2001 From: "jean.chalard" Date: Thu, 10 Dec 2009 03:30:19 +0000 Subject: [PATCH] J : * Fix an include bug which would prevent compilation. --- projects/mtg/src/Rules.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/projects/mtg/src/Rules.cpp b/projects/mtg/src/Rules.cpp index baead6ac6..c6364f922 100644 --- a/projects/mtg/src/Rules.cpp +++ b/projects/mtg/src/Rules.cpp @@ -1,7 +1,7 @@ #include "../include/Rules.h" -#include "../include/mtgdefinitions.h" +#include "../include/MTGDefinitions.h" #include "../include/config.h" -#include "../include/Manacost.h" +#include "../include/ManaCost.h" #include "../include/Player.h" #include "../include/AIMomirPlayer.h" @@ -387,4 +387,4 @@ int Rules::strToGameMode(string s){ if (s.compare("random1")==0) return GAME_TYPE_RANDOM1; if (s.compare("random2")==0) return GAME_TYPE_RANDOM2; return GAME_TYPE_CLASSIC; -} \ No newline at end of file +}