#ifndef SAFFRON_EVENT_HOOKS_H #define SAFFRON_EVENT_HOOKS_H #include /* this file will not be included in saffron.h. this is an internal file for internal hooking in the event loop. */ typedef struct { bool (*callback)(SDL_Event* event); int priority; // higher num = higher priority } SfInternalEventHook; #endif