Files
axyz/include/Engine/Core/EShoot.h
T
2016-01-24 17:16:18 +01:00

17 lines
182 B
C++

#ifndef EShoot_h__
#define EShoot_h__
#include "EventBroker.h"
#include "../Core/EntityWrapper.h"
namespace Events
{
struct Shoot : Event
{
EntityWrapper Player;
};
}
#endif