10 lines
163 B
C
10 lines
163 B
C
|
/// Header_A1
|
||
|
typedef struct
|
||
|
{
|
||
|
int champX;
|
||
|
int champY;
|
||
|
} structA1;
|
||
|
structA1 structA1Creation (int x, int y);
|
||
|
void structA1Afficher (structA1 x);
|
||
|
|