We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c8c1eb6 + 5c98138 commit 1a10eefCopy full SHA for 1a10eef
TODO.md
@@ -1,33 +1,3 @@
1
-- [ ] Dont allow immediate capture, if Hunter Piece just became King (wasnt king before capture)
2
-- [ ] reset isMyTurn after game is over.
3
-- [ ] reset all states to FALSE inside OnlineManager after game is over
4
-
5
- 192.168.2.110:9876/game
6
7
-```cpp
8
-#include <iostream>
9
-using namespace std;
10
11
-bool xnor(bool p, bool q) {
12
- return !(p ^ q);
13
-}
14
15
-int main() {
16
- bool p = true;
17
- bool q = false;
18
19
- bool result = xnor(p, q);
20
21
- if (result) {
22
- cout << "XNOR is true" << endl;
23
- } else {
24
- cout << "XNOR is false" << endl;
25
- }
26
27
- return 0;
28
29
30
-```
31
32
## GAME LOGS
33
0 commit comments