/// <summary> /// Used to safely check whether all of the passed in flags are set. /// </summary> /// <param name="flagsToCheck">Class flags to check for</param> /// <returns>true if all of the passed in flags are set (including no flags passed in), false otherwise</returns> public bool HasAllClassFlags(EClassFlags flagsToCheck) { return(Native_UClass.HasAllClassFlags(Address, flagsToCheck)); }