F4MP/tiltedcode/Code/server/Events/OwnershipTransferEvent.h
Jous99 37b16f1547 code upload
codigo original de f4mp y tilted para referencias
2026-01-06 18:45:00 +01:00

15 lines
322 B
C

#pragma once
/**
* Dispatched when a player gives up ownership of an actor,
* and when it is preferable for some other player client to claim ownership over it.
*/
struct OwnershipTransferEvent
{
OwnershipTransferEvent(const entt::entity aEntity)
: Entity{aEntity}
{
}
entt::entity Entity;
};