blob: 2204145bcdc973d926eb7d58268cec5ea7d25db7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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;
}
}
}
|