F4MP/codigos originales/tiltedcode/Code/client/Events/MountEvent.h
2026-01-06 18:53:59 +01:00

16 lines
302 B
C

#pragma once
/**
* @brief Dispatched whenever a local actor mounts another actor (i.e. a horse or dragon).
*/
struct MountEvent
{
MountEvent(uint32_t aRiderID, uint32_t aMountID)
: RiderID(aRiderID)
, MountID(aMountID)
{
}
uint32_t RiderID;
uint32_t MountID;
};