diff options
author | emkael <emkael@tlen.pl> | 2016-05-23 16:48:04 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2016-05-23 16:48:04 +0200 |
commit | 485863c9568a4c0a5dc2bb7a40f2ee79a5034c40 (patch) | |
tree | d500818df8a686610a8601b859e690dbcbab15d7 /ParScore.cs | |
parent | 0f96a08cbdb101d676ddb80c27ac4d97fedfd8ac (diff) |
* par score/car contract structures
Diffstat (limited to 'ParScore.cs')
-rw-r--r-- | ParScore.cs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/ParScore.cs b/ParScore.cs new file mode 100644 index 0000000..2204145 --- /dev/null +++ b/ParScore.cs @@ -0,0 +1,25 @@ +using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Text.RegularExpressions;
+
+namespace BCDD
+{
+ class ParScoreInvalidException : FieldNotFoundException
+ {
+ public ParScoreInvalidException() : base() { }
+ public ParScoreInvalidException(String msg) : base(msg) { }
+ }
+
+ class ParScore
+ {
+ private PBNBoard board;
+
+ public ParScore(PBNBoard board)
+ {
+ this.board = board;
+ }
+
+ }
+}
|