28 lines
289 B
C++
28 lines
289 B
C++
//
|
|
// Created by Administrator on 2015-09-15.
|
|
//
|
|
|
|
#ifndef DAYDREAM_ELIFELOST_H
|
|
#define DAYDREAM_ELIFELOST_H
|
|
|
|
#include "Core/EventBroker.h"
|
|
#include "Core/Entity.h"
|
|
|
|
namespace dd
|
|
{
|
|
|
|
namespace Events
|
|
{
|
|
|
|
struct LifeLost : Event
|
|
{
|
|
EntityID entity;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif //DAYDREAM_ELIFELOST_H
|