Create events.h

This commit is contained in:
Jason Bou-Samra
2024-08-12 18:47:40 +10:00
committed by GitHub
parent ff0ab4278b
commit 74d01b0b21
+12
View File
@@ -0,0 +1,12 @@
#ifndef EVENTS_H
#define EVENTS_H
int handle_events ();
extern bool next_p; // next piece flag
extern bool pause_f;
extern bool quit; // quit flag
extern bool main_m;
extern bool restart;
#endif