10 lines
163 B
C
Executable File
10 lines
163 B
C
Executable File
/// Header_A3
|
|
typedef struct
|
|
{
|
|
int champX;
|
|
int champY;
|
|
} structA3;
|
|
structA3 structA3Creation (int x, int y);
|
|
void structA3Afficher (structA3 x);
|
|
|