pixelgon/Assets/NaughtyAttributes/Scripts/Editor/CodeGeneration/NativePropertyDrawerDatabase.cs
2020-06-05 11:54:36 -07:00

33 lines
903 B
C#

// This class is auto generated
using System;
using System.Collections.Generic;
namespace NaughtyAttributes.Editor
{
public static class NativePropertyDrawerDatabase
{
private static Dictionary<Type, NativePropertyDrawer> drawersByAttributeType;
static NativePropertyDrawerDatabase()
{
drawersByAttributeType = new Dictionary<Type, NativePropertyDrawer>();
drawersByAttributeType[typeof(ShowNativePropertyAttribute)] = new ShowNativePropertyNativePropertyDrawer();
}
public static NativePropertyDrawer GetDrawerForAttribute(Type attributeType)
{
NativePropertyDrawer drawer;
if (drawersByAttributeType.TryGetValue(attributeType, out drawer))
{
return drawer;
}
else
{
return null;
}
}
}
}