mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03: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
|