summaryrefslogtreecommitdiff
path: root/ParScore.cs
diff options
context:
space:
mode:
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;
+ }
+
+ }
+}