From 485863c9568a4c0a5dc2bb7a40f2ee79a5034c40 Mon Sep 17 00:00:00 2001 From: emkael Date: Mon, 23 May 2016 16:48:04 +0200 Subject: * par score/car contract structures --- ParScore.cs | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 ParScore.cs (limited to 'ParScore.cs') 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; + } + + } +} -- cgit v1.2.3