mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 00:20:54 +01:00
17 lines
302 B
C
17 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;
|
||
|
|
};
|