Skip to content

Commit 9f137b4

Browse files
author
ankit21
committed
changing dependencies
1 parent ade4405 commit 9f137b4

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

include/Deck.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include <vector>
1212
#include <ctime>
1313
#include <algorithm>
14-
#include "DevelopmentCard.h"
14+
//#include "DevelopmentCard.h"
1515

1616

1717
enum DevCardType { KNIGHT, VICTORYPOINT, YEAROFPLENTY, MONOPOLY, ROADBUILDING };

include/Player.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
#include "tinyxml2.h"
1818
#include "Util.h"
1919
#include "GameVisitor.h"
20+
#include "Deck.h"
2021

2122
// WHEAT, SHEEP, STONE, BRICK, WOOD is the order because it matches the enum in GamePiece.h
2223
const int WHEAT_INDEX = 0;
@@ -27,7 +28,7 @@ const int WOOD_INDEX = 4;
2728

2829

2930
class DevelopmentCard;
30-
class Deck;
31+
//class Deck;
3132

3233

3334
class Player {

0 commit comments

Comments
 (0)