Files
axyz/include/Engine/Rendering/ESetCamera.h
T
2016-01-08 16:21:59 +01:00

24 lines
264 B
C++

#ifndef Events_SetCamera_h__
#define Events_SetCamera_h__
#include "../Core/EventBroker.h"
#include "../Core/Entity.h"
#include <string.h>
namespace Events
{
struct SetCamera : Event
{
public:
SetCamera() { };
std::string Name;
private:
};
}
#endif