18 lines
266 B
C++
18 lines
266 B
C++
#ifndef EPlayerHealthPickup_h__
|
|
#define EPlayerHealthPickup_h__
|
|
|
|
#include "EventBroker.h"
|
|
#include "../Core/EntityWrapper.h"
|
|
|
|
namespace Events
|
|
{
|
|
|
|
struct PlayerHealthPickup : Event
|
|
{
|
|
EntityWrapper Player;
|
|
double HealthAmount;
|
|
};
|
|
|
|
}
|
|
|
|
#endif |