18 lines
215 B
C++
18 lines
215 B
C++
#ifndef EPlayerDamage_h__
|
|
#define EPlayerDamage_h__
|
|
|
|
#include "EventBroker.h"
|
|
#include "../Core/Entity.h"
|
|
|
|
namespace Events
|
|
{
|
|
|
|
struct PlayerDamage : Event
|
|
{
|
|
int DamageAmount;
|
|
EntityID PlayerID;
|
|
};
|
|
|
|
}
|
|
|
|
#endif |