Moved some events to their correct place

This commit is contained in:
2016-02-24 11:04:56 +01:00
parent 2c18068059
commit 4aaba03852
13 changed files with 52 additions and 53 deletions
+18
View File
@@ -0,0 +1,18 @@
#ifndef EPlayerHealthPickup_h__
#define EPlayerHealthPickup_h__
#include "Core/EventBroker.h"
#include "Core/EntityWrapper.h"
namespace Events
{
struct PlayerHealthPickup : Event
{
EntityWrapper Player;
double HealthAmount;
};
}
#endif