This repository has been archived on 2024-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
snakeinabox/Assets/NaughtyAttributes/Scripts/Editor/CodeGeneration/Templates/MethodDrawerDatabaseTemplate.txt
2020-07-09 11:41:01 -07:00

31 lines
746 B
Text

// This class is auto generated
using System;
using System.Collections.Generic;
namespace NaughtyAttributes.Editor
{
public static class __classname__
{
private static Dictionary<Type, MethodDrawer> drawersByAttributeType;
static __classname__()
{
drawersByAttributeType = new Dictionary<Type, MethodDrawer>();
__entries__
}
public static MethodDrawer GetDrawerForAttribute(Type attributeType)
{
MethodDrawer drawer;
if (drawersByAttributeType.TryGetValue(attributeType, out drawer))
{
return drawer;
}
else
{
return null;
}
}
}
}