#include #include Vector TESObjectCELL::GetRefsByFormTypes(const Vector& aFormTypes) const noexcept { Vector references{}; if (!refData.refArray) return references; for (uint32_t i = 0; i < refData.capacity; i++) { TESObjectREFR* pRef = refData.refArray[i].Get(); if (!pRef) continue; for (FormType formType : aFormTypes) { if (pRef->baseForm->formType == formType) references.push_back(pRef); } } return references; } void TESObjectCELL::GetCOCPlacementInfo(NiPoint3* aOutPos, NiPoint3* aOutRot, bool aAllowCellLoad) noexcept { TP_THIS_FUNCTION(TGetCOCPlacementInfo, void, TESObjectCELL, NiPoint3*, NiPoint3*, bool); POINTER_SKYRIMSE(TGetCOCPlacementInfo, s_getCOCPlacementInfo, 19075); TiltedPhoques::ThisCall(s_getCOCPlacementInfo, this, aOutPos, aOutRot, aAllowCellLoad); }