This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.

17 lines
327 B
C++
Raw Normal View History

#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);
}
}