Ark Server API (ASE) - Wiki
Loading...
Searching...
No Matches
UE.cpp
Go to the documentation of this file.
1#pragma once
2#include "API\UE\UE.h"
3
4__declspec(dllexport) UProperty* UObject::FindProperty(FName name)
5{
6 for (UProperty* Property = ClassField()->PropertyLinkField(); Property != nullptr; Property = Property->PropertyLinkNextField())
7 if (Property->NameField().Compare(&name) == 0)
8 return Property;
9 return nullptr;
10}
Definition UE.h:21
int Compare(FName *Other)
Definition UE.h:43
FName & NameField()
Definition UE.h:278
UClass * ClassField()
Definition UE.h:277
Definition UE.h:306
__declspec(dllexport) UProperty *FindProperty(FName name)
UProperty * PropertyLinkNextField()
Definition UE.h:477
UProperty * PropertyLinkField()
Definition UE.h:361