18 lines
204 B
C++
18 lines
204 B
C++
#ifndef EShoot_h__
|
|
#define EShoot_h__
|
|
|
|
#include "EventBroker.h"
|
|
#include "../Core/EntityWrapper.h"
|
|
|
|
namespace Events
|
|
{
|
|
|
|
struct Shoot : Event
|
|
{
|
|
EntityWrapper Inflictor;
|
|
double Damage;
|
|
};
|
|
|
|
}
|
|
|
|
#endif |