breakout/highscores.h
2018-01-15 15:42:14 +01:00

11 lines
151 B
C

#ifndef __highscores_h__
#define __highscores_h__
// Structs
typedef struct userStruct {
char * Username, * Score;
} User;
// End Structs
#endif