25 lines
417 B
C++
25 lines
417 B
C++
#ifndef Events_Interpolate_h__
|
|
#define Events_Interpolate_h__
|
|
|
|
#include <boost/shared_array.hpp>
|
|
|
|
#include "Core/EventBroker.h"
|
|
#include "Core/Entity.h"
|
|
|
|
namespace Events
|
|
{
|
|
|
|
struct Interpolate : Event
|
|
{
|
|
Interpolate(EntityWrapper Entity, SharedComponentWrapper Component)
|
|
: Entity(Entity)
|
|
, Component(Component)
|
|
{ }
|
|
|
|
EntityWrapper Entity;
|
|
SharedComponentWrapper Component;
|
|
};
|
|
|
|
}
|
|
|
|
#endif |