breakout/highscores.h

11 lines
151 B
C
Raw Normal View History

2018-01-15 15:42:14 +01:00
#ifndef __highscores_h__
#define __highscores_h__
// Structs
typedef struct userStruct {
char * Username, * Score;
} User;
// End Structs
#endif