mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-10-27 06:16:04 +03: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
|