apple2idiot/examples/defunct-explorations/cc65-Chess/apple2-cc65/src/globals.h
2021-12-27 12:41:59 -07:00

19 lines
280 B
C

/*
* globals.h
* cc65 Chess
*
* Created by Stefan Wessels, February 2014.
*
*/
#ifndef _GLOBALS_H_
#define _GLOBALS_H_
extern char gChessBoard[8][8];
extern char gCursorPos[2][2];
extern char gTile[2];
extern char state;
#endif //_GLOBALS_H_