|
|
@ -16,7 +16,7 @@ namespace QwirkleClassLibrary
|
|
|
|
tiles = new List<Tile>();
|
|
|
|
tiles = new List<Tile>();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for(int i=0; i<3; i++)
|
|
|
|
for (int i = 0; i < 3; i++)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
foreach (Shape s in Enum.GetValues(typeof(Shape)))
|
|
|
|
foreach (Shape s in Enum.GetValues(typeof(Shape)))
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -34,7 +34,7 @@ namespace QwirkleClassLibrary
|
|
|
|
|
|
|
|
|
|
|
|
public void RemoveTileInBag(Tile tile)
|
|
|
|
public void RemoveTileInBag(Tile tile)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
for(int i=0; i<tiles.Count; i++)
|
|
|
|
for (int i = 0; i < tiles.Count; i++)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
if (tiles[i] == tile)
|
|
|
|
if (tiles[i] == tile)
|
|
|
|
{
|
|
|
|
{
|
|
|
|