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
+1 -1
View File
@@ -26,7 +26,7 @@ private:
EventRelay<HealthSystem, Events::PlayerDamage> m_EPlayerDamage;
bool HealthSystem::OnPlayerDamaged(Events::PlayerDamage& e);
EventRelay<HealthSystem, Events::PlayerHealthPickup> m_EPlayerHealthPickup;
bool HealthSystem::OnPlayerHealthPickup(const Events::PlayerHealthPickup& e);
bool HealthSystem::OnPlayerHealthPickup(Events::PlayerHealthPickup& e);
//vector which will keep track of health changes
std::vector<std::tuple<EntityID, double>> m_DeltaHealthVector;