aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/include/event.h
blob: 8346ce7deec7377a7f87bb63d12d16f1e00d1170 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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