Files
fishtanks/src/Events/Rotate.h
T
2014-05-31 03:55:23 +02:00

20 lines
232 B
C++

#ifndef Event_Rotate_h__
#define Event_Rotate_h__
#include "EventBroker.h"
namespace Events
{
struct Rotate : Event
{
EntityID Entity;
glm::quat GoalRotation;
double Time;
bool Queue;
};
}
#endif // Event_Rotate_h__