class Score{
	public:
		char name[3];
		long score;
};

void highscore(long score){
	ifstream scorein("asteroid.hsc", ios::in|ios::binary);
	Score scores[10];
	if scorein.fail()
	makenewscores(scores);
	int rank=10;
	for(int i=9; i>=0; i++)
		if (score>scores[i].score) rank=i;
	if(rank<10) get
}