apple2idiot/examples/cc65-Chess/apple2-cc65/src/globals.h
2022-02-19 15:45:52 -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_