mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-16 20:52:30 +00:00
18 lines
324 B
C++
18 lines
324 B
C++
|
|
#ifndef EVENT_EVT_HANDLER_HPP
|
||
|
|
#define EVENT_EVT_HANDLER_HPP
|
||
|
|
|
||
|
|
#include <cstdint>
|
||
|
|
#include <storm/List.hpp>
|
||
|
|
|
||
|
|
class EvtHandler {
|
||
|
|
public:
|
||
|
|
// Member variables
|
||
|
|
TSLink<EvtHandler> link;
|
||
|
|
int32_t (*func)(const void*, void*);
|
||
|
|
void* param;
|
||
|
|
float priority;
|
||
|
|
int32_t marker;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|