Files
BlenderSharp/BlendFile/FileInfoExt.cs
2025-02-20 19:58:33 +01:00

7 lines
197 B
C#

using System.Reflection;
namespace BlendFile;
public static class FileInfoExt {
static bool IsFieldPointer(this FieldInfo field) => field.GetCustomAttribute<DNAFieldAttribute>()!.IsPointer;
}