10 lines
163 B
C
10 lines
163 B
C
|
/// Header_A2
|
||
|
typedef struct
|
||
|
{
|
||
|
int champX;
|
||
|
int champY;
|
||
|
} structA2;
|
||
|
structA2 structA2Creation (int x, int y);
|
||
|
void structA2Afficher (structA2 x);
|
||
|
|