Miscellaneous small fixes: For Tests, CapturePoint xml file, HealthSystem, DashAbility xml file.

This commit is contained in:
verysecrethero
2016-02-05 15:35:51 +01:00
parent ff26e1235c
commit 2542397511
9 changed files with 32 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;
};
}