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