Files
fishtanks/src/Events/ApplyForce.h
T
2014-05-17 03:49:53 +02:00

18 lines
247 B
C++

#ifndef Events_ApplyForce_h__
#define Events_ApplyForce_h__
#include "Entity.h"
#include "EventBroker.h"
namespace Events
{
struct ApplyForce : Event
{
EntityID Entity;
double DeltaTime;
glm::vec3 Force;
};
}
#endif // Events_ApplyForce_h__