23 lines
234 B
C++
23 lines
234 B
C++
#ifndef DAYDREAM_ECLUSTERCLEAR_H
|
|
#define DAYDREAM_ECLUSTERCLEAR_H
|
|
|
|
#include "Core/EventBroker.h"
|
|
#include "Core/Entity.h"
|
|
|
|
namespace dd
|
|
{
|
|
|
|
namespace Events
|
|
{
|
|
|
|
struct ClusterClear : Event
|
|
{
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif //DAYDREAM_ECLUSTERCLEAR_H
|