This repository has been archived by the owner on Dec 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Having trouble with getting move out of gui to pass to communication thread.
- Loading branch information
Adam Procio
committed
May 6, 2019
1 parent
f78ddf8
commit b5768a6
Showing
33 changed files
with
233 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package client.GUI; | ||
|
||
public enum ChessSymbols { | ||
WHITE_KING (9812), | ||
WHITE_QUEEN (9813), | ||
WHITE_ROOK (9814), | ||
WHITE_BISHOP (9815), | ||
WHITE_KNIGHT (9816), | ||
WHITE_PAWN (9817), | ||
BLACK_KING (9818), | ||
BLACK_QUEEN (9819), | ||
BLACK_ROOK (9820), | ||
BLACK_BISHOP (9821), | ||
BLACK_KNIGHT (9822), | ||
BLACK_PAWN (9823); | ||
|
||
public int val; | ||
|
||
ChessSymbols(int value){ | ||
this.val = value; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.