10 lines
163 B
C
10 lines
163 B
C
|
/// Header_B2
|
||
|
typedef struct
|
||
|
{
|
||
|
int champX;
|
||
|
int champY;
|
||
|
} structB2;
|
||
|
structB2 structB2Creation (int x, int y);
|
||
|
void structB2Afficher (structB2 x);
|
||
|
|