AnimationSystem base WIP

This commit is contained in:
viktorljung
2016-01-24 17:05:34 +01:00
parent 132de88d28
commit af2f017cb4
7 changed files with 138 additions and 9 deletions
@@ -0,0 +1,18 @@
#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