Example #1
0
 public BlackBox(IBoxHelper helper, int row, int column)
     : base(helper, row, column)
 {
 }
Example #2
0
 public LightBox(IBoxHelper helper, int row, int column)
     : base(helper, row, column)
 {
 }
Example #3
0
 public BlackBox(IBoxHelper helper, Position pos)
     : base(helper, pos)
 {
 }
Example #4
0
 public LightBox(IBoxHelper helper, int row, int column)
     : base(helper, row, column)
 {
 }
Example #5
0
 public LightBox(IBoxHelper helper, Position pos)
     : base(helper, pos)
 {
 }
Example #6
0
 public LightBox(IBoxHelper helper, Position pos)
     : base(helper, pos)
 {
 }
Example #7
0
 public NookBox(IBoxHelper helper, Position pos)
     : base(helper, pos)
 {
 }
Example #8
0
 public NookBox(IBoxHelper helper, int row, int column)
     : base(helper, row, column)
 {
 }
Example #9
0
 public Box(IBoxHelper helper, Position pos)
 {
     Helper   = helper;
     Position = new Position(pos);
 }
Example #10
0
 public Box(IBoxHelper helper, int row, int column)
 {
     Helper   = helper;
     Position = new Position(row, column);
 }