SpawnVehicle event

This commit is contained in:
2014-06-02 17:52:32 +02:00
parent c55b9333a9
commit 68abdbb4e0
+24
View File
@@ -0,0 +1,24 @@
#ifndef Events_SpawnVehicle_h__
#define Events_SpawnVehicle_h__
#include "Entity.h"
#include "EventBroker.h"
namespace Events
{
struct SpawnVehicle : Event
{
enum class VehicleType
{
Tank = 0,
Helicopter,
HRSV,
Jeep
};
int PlayerID;
VehicleType Vehicle;
};
}
#endif // Events_SpawnVehicle_h__