Files
squidout/include/Rendering/EAnimationComplete.h
T
2015-10-23 14:35:11 +02:00

21 lines
286 B
C++

#ifndef RENDERING_EANIMATIONCOMPLETE_H__
#define RENDERING_EANIMATIONCOMPLETE_H__
#include "Core/Entity.h"
#include "Core/EventBroker.h"
namespace dd
{
namespace Events
{
struct AnimationComplete : Event
{
EntityID Entity;
std::string Animation;
};
}
}
#endif