Files
axyz/include/Engine/Core/EPlayerDamage.h
T

19 lines
251 B
C++

#ifndef EPlayerDamage_h__
#define EPlayerDamage_h__
#include "EventBroker.h"
#include "../Core/EntityWrapper.h"
namespace Events
{
struct PlayerDamage : Event
{
EntityWrapper Inflictor;
EntityWrapper Victim;
double Damage;
};
}
#endif