Files
ogre-prototype/src/gamedata/EventSystem.h
2025-10-22 16:39:19 +03:00

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