F4MP/codigos originales/tiltedcode/Code/client/Events/ConnectedEvent.h

15 lines
227 B
C
Raw Normal View History

#pragma once
/**
* @brief Dispatched when the client initially connects to the server.
*/
struct ConnectedEvent
{
ConnectedEvent(uint32_t aPlayerId)
: PlayerId(aPlayerId)
{
}
uint32_t PlayerId{};
};