Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
cnpapado committed Mar 6, 2020
0 parents commit 0c79056
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"git.ignoreLimitWarning": true
}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# KappaEngine
22 changes: 22 additions & 0 deletions draft.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
class Bitboard{
protected:
unsigned long long int b;
};

class Chessboard{
public:
protected:
Bitboard whitePawns,
blackPawns,
whiteRooks,
blackRooks,
whiteKnights,
blackKnights,
whiteBishops,
blackBishops,
whiteQueens,
blackQueens,
whiteKing,
blackKing;
bool sideToMove;
}

0 comments on commit 0c79056

Please sign in to comment.