26 lines
287 B
C++
26 lines
287 B
C++
//
|
|
// Created by Adniklastrator on 2015-10-12.
|
|
//
|
|
|
|
#ifndef EVENTS_EARRIVEDATNEWSTAGE_H__
|
|
#define EVENTS_EARRIVEDATNEWSTAGE_H__
|
|
|
|
#include "Core/EventBroker.h"
|
|
|
|
namespace dd
|
|
{
|
|
|
|
namespace Events
|
|
{
|
|
|
|
struct ArrivedAtNewStage : public Event
|
|
{
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif //DAYDREAM_EARRIVEDATNEWSTAGE_H
|