2021-11-22 17:29:33 +01:00
|
|
|
#ifndef _TAQUIN_H
|
|
|
|
#define _TAQUIN_H
|
|
|
|
|
|
|
|
void CreateTaquin(char * filename, int rows, int columns);
|
|
|
|
|
2021-11-26 12:14:37 +01:00
|
|
|
extern int ImageX, ImageY;
|
|
|
|
|
|
|
|
void UpdateTaquin(char* filename, int** Taquin, int rows, int columns);
|
|
|
|
void UpdatePiece(char* filename, int x, int y, couleur color);
|
|
|
|
|
2021-11-22 17:29:33 +01:00
|
|
|
#endif
|