11 lines
171 B
C
11 lines
171 B
C
#ifndef EVENT_SYSTEM_H_
|
|
#define EVENT_SYSTEM_H_
|
|
struct EventSystem {
|
|
struct CommonEvent {
|
|
int event_type;
|
|
};
|
|
void send_event(const EventSystem &event)
|
|
{
|
|
}
|
|
};
|
|
#endif |