WIP implementing interpolation

This commit is contained in:
stiffly
2016-01-18 17:11:37 +01:00
parent cc604f8e9a
commit d7780d8248
3 changed files with 112 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#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
{
EntityID Entity;
boost::shared_array<char*> DataArray;
};
}
#endif