From 0032de9dcc7861ecc2b5c12b4ba36a059d5e2195 Mon Sep 17 00:00:00 2001 From: emkael Date: Mon, 23 May 2016 14:58:20 +0200 Subject: * basic board info retrieval from a PBN board --- PBNBoard.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) 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"); + } + } } -- cgit v1.2.3