mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 00:40:53 +01:00
17 lines
279 B
C
17 lines
279 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "Structs/GameId.h"
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @brief Dispatched when a player leaves a certain cell, be it exterior or interior.
|
||
|
|
*/
|
||
|
|
struct PlayerLeaveCellEvent
|
||
|
|
{
|
||
|
|
PlayerLeaveCellEvent(const GameId aOldCell)
|
||
|
|
: OldCell(aOldCell)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
GameId OldCell;
|
||
|
|
};
|