//file: Tile.h
//written by: David Yang, Sean McMillan, Dominic Golab
//on: 12/6/09
//For: CSE 30331: Scrabble Gmae
//12/6/09
/*Description: This file contains the functionality of the tile class. It holds a char and a value for the char.*/

#ifndef TILE_H
#define TILE_H

class Tile{


 public:
  Tile();//constructor
  char getLetter();//returns the char stored in letter
  void setLetter(char,int);//sets the letter and val
  int getScore();//returns the val

 private:
  int val;
  char letter;
};


#endif
