18 lines
235 B
C++
18 lines
235 B
C++
#ifndef EAmmoPickup_h__
|
|
#define EAmmoPickup_h__
|
|
|
|
#include "EventBroker.h"
|
|
#include "../Core/EntityWrapper.h"
|
|
|
|
namespace Events
|
|
{
|
|
|
|
struct AmmoPickup : Event
|
|
{
|
|
EntityWrapper Player;
|
|
int AmmoGain;
|
|
};
|
|
|
|
}
|
|
|
|
#endif |