22 lines
201 B
C++
22 lines
201 B
C++
#ifndef EVENTS_EGAMESTART_H__
|
|
#define EVENTS_EGAMESTART_H__
|
|
|
|
#include "Core/EventBroker.h"
|
|
|
|
namespace dd
|
|
{
|
|
|
|
namespace Events
|
|
{
|
|
|
|
struct GameStart : public Event
|
|
{
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|