18 lines
225 B
C++
18 lines
225 B
C++
#ifndef EPickupSpawned_h__
|
|
#define EPickupSpawned_h__
|
|
|
|
#include "Core/Event.h"
|
|
#include "Core/EntityWrapper.h"
|
|
|
|
namespace Events
|
|
{
|
|
|
|
struct PickupSpawned : Event
|
|
{
|
|
EntityID PickupID;
|
|
EntityWrapper Pickup;
|
|
};
|
|
|
|
}
|
|
|
|
#endif |