19 lines
261 B
C++
19 lines
261 B
C++
#ifndef Events_AnimationComplete_h__
|
|
#define Events_AnimationComplete_h__
|
|
|
|
#include "../Core/EventBroker.h"
|
|
#include "../Core/EntityWrapper.h"
|
|
|
|
namespace Events
|
|
{
|
|
|
|
struct AnimationComplete : Event
|
|
{
|
|
EntityWrapper Entity;
|
|
std::string Name;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|