23 lines
293 B
C++
23 lines
293 B
C++
//
|
|
// Created by Administrator on 2015-10-19.
|
|
//
|
|
|
|
#ifndef DAYDREAM_ESTARTEDNEWLEVEL_H
|
|
#define DAYDREAM_ESTARTEDNEWLEVEL_H
|
|
|
|
#include "Core/EventBroker.h"
|
|
#include "Core/Entity.h"
|
|
|
|
namespace dd
|
|
{
|
|
namespace Events
|
|
{
|
|
struct StartedNewLevel : Event
|
|
{
|
|
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif //DAYDREAM_ESTARTEDNEWLEVEL_H
|