mirror of
https://github.com/whoahq/whoa.git
synced 2026-03-18 13:41:06 +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
|