10 lines
163 B
C
10 lines
163 B
C
|
/// Header_B3
|
||
|
typedef struct
|
||
|
{
|
||
|
int champX;
|
||
|
int champY;
|
||
|
} structB3;
|
||
|
structB3 structB3Creation (int x, int y);
|
||
|
void structB3Afficher (structB3 x);
|
||
|
|