7 lines
197 B
C#
7 lines
197 B
C#
using System.Reflection;
|
|
|
|
namespace BlendFile;
|
|
|
|
public static class FileInfoExt {
|
|
static bool IsFieldPointer(this FieldInfo field) => field.GetCustomAttribute<DNAFieldAttribute>()!.IsPointer;
|
|
} |