17 lines
327 B
C++
17 lines
327 B
C++
![]() |
#include "backend/looped/looped.hpp"
|
||
|
#include "natives.hpp"
|
||
|
|
||
|
namespace big
|
||
|
{
|
||
|
void looped::system_self_globals()
|
||
|
{
|
||
|
self::id = PLAYER::PLAYER_ID();
|
||
|
|
||
|
self::ped = PLAYER::PLAYER_PED_ID();
|
||
|
|
||
|
self::pos = ENTITY::GET_ENTITY_COORDS(self::ped, false /*Unused*/);
|
||
|
|
||
|
self::veh = PED::GET_VEHICLE_PED_IS_IN(self::ped, false);
|
||
|
}
|
||
|
}
|