mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 00:40:53 +01:00
14 lines
232 B
C
14 lines
232 B
C
#pragma once
|
|
|
|
struct HitEvent
|
|
{
|
|
HitEvent() = delete;
|
|
HitEvent(uint32_t aHitterId, uint32_t aHitteeId)
|
|
: HitterId(aHitterId)
|
|
, HitteeId(aHitteeId)
|
|
{
|
|
}
|
|
|
|
uint32_t HitterId;
|
|
uint32_t HitteeId;
|
|
};
|