diff --git a/src/Events/SpawnVehicle.h b/src/Events/SpawnVehicle.h new file mode 100644 index 0000000..f48c9ce --- /dev/null +++ b/src/Events/SpawnVehicle.h @@ -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__ \ No newline at end of file