#ifndef _EXT_GLBLS
#define _EXT_GLBLS 1

#include <stdio.h>
#include <stdlib.h>


struct grid{
        int x;
        int y;
};

struct pieces{
        //int team_color;  //0 white 1 black
        int alive;       //0 dead 1 alive
        int type;        //0 pawn 1 rook 2 knight 3 bishop 4 queen 5 king
        struct grid position;
        int first_turn;
};


#endif
