// Decompiled by Jad v1.5.7f. Copyright 2000 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/SiliconValley/Bridge/8617/jad.html
// Decompiler options: packimports(3) 
// Source File Name:   PlayedTile.java

package Scrabble;

import KennethTam.Debug;
import java.awt.Point;

// Referenced classes of package Scrabble:
//            Tile

public class PlayedTile
{

    public PlayedTile(int i, int j, Tile tile)
    {
        Debug.assert(tile != null, "NULL tile played!");
        _coord = new Point(j, i);
        _tile = tile;
        _bFound = false;
    }

    public int hashCode()
    {
        return _coord.hashCode();
    }

    public boolean equals(Object obj)
    {
        return _coord.equals(obj);
    }

    public String toString()
    {
        return _coord.toString();
    }

    public Point _coord;
    public Tile _tile;
    public boolean _bFound;
}
