Skip to content

Commit 0b8ca71

Browse files
author
Thumperrr
committed
Fixed some includes in Piece.h
updated .gitignore
1 parent 3037d75 commit 0b8ca71

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,13 @@
66
*.vcxproj
77
*.filters
88
*.opensdf
9+
*.exe
10+
11+
debug.txt
912

1013
ChessPlusPlus/
1114
Debug/
1215
Release/
13-
libs/SFML-4fbefe7/build_vs11/
16+
libs/SFML-4fbefe7/build_vs11/
17+
*.pdb
18+
*.ilk

src/board/Piece.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
// textureX = givenValX
1010
// textureY = givenValY + ( this->color == WHITE ? 0 : 80 )
1111

12-
#include "board\logger.h"
12+
#include "logger.h"
1313

1414
// The contigousness of this container does not matter
1515
// It could be sorted for std::lower_bound? I don't think time is an issue
1616
#include <vector>
17-
#include "board\Position.h"
17+
#include "Position.h"
1818

1919
namespace chesspp
2020
{
@@ -92,7 +92,7 @@ namespace chesspp
9292
}
9393

9494
// This is handy, thanks.
95-
#include "board\Board.h"
95+
#include "Board.h"
9696

9797
#endif
9898

0 commit comments

Comments
 (0)