diff options
| author | Ramaekers,Aldrik A.N <a.ramaekers@student.fontys.nl> | 2020-09-16 09:42:04 +0200 |
|---|---|---|
| committer | Ramaekers,Aldrik A.N <a.ramaekers@student.fontys.nl> | 2020-09-16 09:42:04 +0200 |
| commit | f6f3bbbc5b7741ad0db3c88a398cfc3943988529 (patch) | |
| tree | f9f3aca3cc688369607060336b699b8f711eb360 /Player.cs | |
| parent | 5a045404f3c49022abeb75c27dfe6f82d35928f7 (diff) | |
Diffstat (limited to 'Player.cs')
| -rw-r--r-- | Player.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Player.cs b/Player.cs new file mode 100644 index 0000000..ca9fbcd --- /dev/null +++ b/Player.cs @@ -0,0 +1,20 @@ +using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Chess
+{
+ public class Player
+ {
+ public bool IsWhite;
+ public bool IsPlayersTurn;
+
+ public Player(bool isWhite, bool isPlayersTurn)
+ {
+ IsWhite = isWhite;
+ IsPlayersTurn = isPlayersTurn;
+ }
+ }
+}
|
