Dude 💀

This commit is contained in:
Gray
2024-03-20 21:45:38 -04:00
parent 138d3cc668
commit b3d9ab9e8b
46 changed files with 2846 additions and 1608 deletions

View File

@@ -78,6 +78,14 @@ public:
void SetBitfieldValue(int Offset, uint8_t FieldMask, bool NewValue);
void SetBitfieldValue(const std::string& ChildName, uint8_t FieldMask, bool NewValue) { return SetBitfieldValue(GetOffset(ChildName), FieldMask, NewValue); }
UObject* GetTypedOuter(UClass* Target) const;
template<typename T>
T* GetTypedOuter() const
{
return (T*)GetTypedOuter(T::StaticClass());
}
/* template <typename T = UObject*>
T& GetCached(const std::string& ChildName)
{