Merge remote-tracking branch 'origin/master' into HealthPickup

This commit is contained in:
verysecrethero
2016-02-08 10:22:35 +01:00
9 changed files with 33 additions and 72 deletions
+6 -6
View File
@@ -2,16 +2,16 @@
#define EPlayerHealthPickup_h__
#include "EventBroker.h"
#include "../Core/Entity.h"
#include "../Core/EntityWrapper.h"
namespace Events
{
struct PlayerHealthPickup : Event
{
double HealthAmount;
EntityID PlayerHealedID;
};
struct PlayerHealthPickup : Event
{
EntityWrapper Player;
double HealthAmount;
};
}