Marble or Peg Solitaire game with multiple Boards.
Project has a default size of 450×450 px however since it uses EXACT_FIT and vectoral graphics, can easily be resized in HTML code.
Each board can be 7×7 square marbles. The boards data is an array like below, you can modify it to add or remove your own board designs.
(0=noSlot , 1=emptySlot , 2=Marble)
var boards:Array = new Array(
[ //1 - basic
0,0,2,2,2,0,0,
0,0,2,2,2,0,0,
2,2,2,2,2,2,2,
2,2,2,1,2,2,2,
2,2,2,2,2,2,2,
0,0,2,2,2,0,0,
0,0,2,2,2,0,0
],
[ //2
0,0,1,1,1,0,0,
0,0,1,2,1,0,0,
1,1,2,2,2,1,1,
1,1,1,2,1,1,1,
1,1,1,2,1,1,1,
0,0,1,1,1,0,0,
0,0,1,1,1,0,0
],
.
.
.
[ //15
0,0,1,2,1,0,0,
0,2,2,2,2,2,0,
1,2,2,2,2,2,1,
2,2,2,2,2,2,2,
1,2,2,2,2,2,1,
0,2,2,2,2,2,0,
0,0,1,2,1,0,0
]
);




