26 lines
232 B
C++
26 lines
232 B
C++
//
|
|
// Created by Adniklastrator on 2015-09-30.
|
|
//
|
|
|
|
#ifndef DAYDREAM_EPAUSE_H
|
|
#define DAYDREAM_EPAUSE_H
|
|
|
|
#include "Core/EventBroker.h"
|
|
|
|
namespace dd
|
|
{
|
|
|
|
namespace Events
|
|
{
|
|
|
|
struct Pause : Event
|
|
{
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif //DAYDREAM_EPAUSE_H
|