class scr_CoordList{
public:
 char x,y,vector,used[7];
 int score[15],curscore;

 scr_CoordList(){
  x=y=vector=0;
 }

 scr_CoordList(char xin, char yin, char vectin){
  x=xin; y=yin; vector=vectin; score[0]=curscore=0;
  for(char y=0;y<7;y++) used[y]=0;
 }

 ~scr_CoordList(){
 }

  friend bool operator<(const scr_CoordList &op1, const scr_CoordList &op2);
 
 friend bool operator>(const scr_CoordList &op1, const scr_CoordList &op2);
 
 friend bool operator==(const scr_CoordList &op1, const scr_CoordList &op2);
 
 friend bool operator!=(const scr_CoordList &op1, const scr_CoordList &op2);

};
