Merge pull request #104 from teamfisk/AmmoPickup

Added AmmoPickupSystem with Component, Entity.
This commit is contained in:
2016-02-12 02:08:29 +01:00
9 changed files with 469 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#ifndef EAmmoPickup_h__
#define EAmmoPickup_h__
#include "EventBroker.h"
#include "../Core/EntityWrapper.h"
namespace Events
{
struct AmmoPickup : Event
{
EntityWrapper Player;
int AmmoGain;
};
}
#endif