mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 11:12:29 +00:00
17 lines
337 B
C++
17 lines
337 B
C++
|
|
#ifndef EVENT_EVT_MESSAGE_HPP
|
||
|
|
#define EVENT_EVT_MESSAGE_HPP
|
||
|
|
|
||
|
|
#include "event/Types.hpp"
|
||
|
|
#include <common/Instance.hpp>
|
||
|
|
#include <storm/List.hpp>
|
||
|
|
|
||
|
|
class EvtMessage : public TExtraInstanceRecyclable<EvtMessage> {
|
||
|
|
public:
|
||
|
|
// Member variables
|
||
|
|
TSLink<EvtMessage> link;
|
||
|
|
EVENTID id;
|
||
|
|
char data[4];
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|