19 lines
251 B
C++
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 |