summaryrefslogtreecommitdiff
path: root/ParScore.cs
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2016-05-23 16:48:04 +0200
committeremkael <emkael@tlen.pl>2016-05-23 16:48:04 +0200
commit485863c9568a4c0a5dc2bb7a40f2ee79a5034c40 (patch)
treed500818df8a686610a8601b859e690dbcbab15d7 /ParScore.cs
parent0f96a08cbdb101d676ddb80c27ac4d97fedfd8ac (diff)
* par score/car contract structures
Diffstat (limited to 'ParScore.cs')
-rw-r--r--ParScore.cs25
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;
+ }
+
+ }
+}