26 lines
246 B
C++
26 lines
246 B
C++
//
|
|
// Created by Adam on 2015-09-25.
|
|
//
|
|
|
|
#ifndef EVENTS_EGAMESTART_H__
|
|
#define EVENTS_EGAMESTART_H__
|
|
|
|
#include "Core/EventBroker.h"
|
|
|
|
namespace dd
|
|
{
|
|
|
|
namespace Events
|
|
{
|
|
|
|
struct GameStart : public Event
|
|
{
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|