9 lines
102 B
C
9 lines
102 B
C
#ifndef GUARD_PLAYER_H
|
|
#define GUARD_PLAYER_H
|
|
|
|
struct Player{
|
|
unsigned lives;
|
|
unsigned x;
|
|
};
|
|
|
|
#endif |