mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-27 05:32:45 +00:00
003317e89d
svn-id: r38201
16 lines
321 B
C
16 lines
321 B
C
#ifndef EVENT_H
|
|
#define EVENT_H
|
|
|
|
#include "sci/include/uinput.h"
|
|
|
|
struct _state;
|
|
|
|
sci_event_t getEvent (struct _state *s);
|
|
/* Returns the next SCI_EV_* event
|
|
** Parameters: (struct state *) Current game state
|
|
** Returns : (sci_event_t) The next event, which may be any of the
|
|
** existing events.
|
|
*/
|
|
|
|
#endif
|