#include "scr_Players.h"

scr_Player::scr_Player(int numtiles){
char a;
 TILENUM=numtiles;
 tiles = new unsigned long int[TILENUM];
 score=0;
 for(a=0;a<TILENUM;a++) tiles[a]=0;
}