Files
axyz/include/Engine/Network/EInterpolate.h
T
2016-01-18 17:27:37 +01:00

20 lines
278 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
{
EntityID Entity;
boost::shared_array<char> DataArray;
};
}
#endif