Merge pull request #81 from teamfisk/HealthPickup

Health pickup
This commit is contained in:
William Moberg
2016-02-08 11:50:47 +01:00
11 changed files with 460 additions and 2 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef EPickupSpawned_h__
#define EPickupSpawned_h__
#include "Core/Event.h"
#include "Core/EntityWrapper.h"
namespace Events
{
struct PickupSpawned : Event
{
EntityWrapper Pickup;
};
}
#endif