HealthSystem tested and working. Also the 3 new PlayerEvents seems to work. TODO: a proper test in the testclass

This commit is contained in:
verysecrethero
2016-01-06 16:38:50 +01:00
parent f67f22c82d
commit 638c236ceb
9 changed files with 85 additions and 25 deletions
+2 -2
View File
@@ -9,8 +9,8 @@ namespace Events
struct PlayerDamage : Event
{
int DamageAmount;
EntityID PlayerID;
double DamageAmount;
EntityID PlayerDamagedID;
};
}
+2 -1
View File
@@ -9,8 +9,9 @@ namespace Events
struct PlayerHealthPickup : Event
{
int HealthAmount;
double HealthAmount;
EntityID HealthPickupID;
EntityID playerHealedID;
};
}