/* * The Rubik's cube. * * Sed - april 1999 / december 2003. * * This program is in the public domain. *-------------------- * The wait event function, or how to show the superiority of select in face of threads shit. */ #ifndef _EVENT_H_ #define _EVENT_H_ #include "screen.h" #include "cube.h" #define SCREEN_EVENT 1 #define CUBE_EVENT 2 int can_mix(int); int wait_event(SCREEN *, CUBE *); #endif /* _EVENT_H_ */