diff options
Diffstat (limited to 'PBNBoard.cs')
-rw-r--r-- | PBNBoard.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/PBNBoard.cs b/PBNBoard.cs index 259c728..f03b809 100644 --- a/PBNBoard.cs +++ b/PBNBoard.cs @@ -94,5 +94,25 @@ namespace BCDD }
}
+ public String GetLayout()
+ {
+ return this.GetField("Deal");
+ }
+
+ public String GetNumber()
+ {
+ return this.GetField("Board");
+ }
+
+ public String GetVulnerable()
+ {
+ return this.GetField("Vulnerable");
+ }
+
+ public String GetDealer()
+ {
+ return this.GetField("Dealer");
+ }
+
}
}
|