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/PropertyMetaDatabase.cs
2020-07-09 11:41:01 -07:00

34 lines
899 B
C#

// This class is auto generated
using System;
using System.Collections.Generic;
namespace NaughtyAttributes.Editor
{
public static class PropertyMetaDatabase
{
private static Dictionary<Type, PropertyMeta> metasByAttributeType;
static PropertyMetaDatabase()
{
metasByAttributeType = new Dictionary<Type, PropertyMeta>();
metasByAttributeType[typeof(InfoBoxAttribute)] = new InfoBoxPropertyMeta();
metasByAttributeType[typeof(OnValueChangedAttribute)] = new OnValueChangedPropertyMeta();
}
public static PropertyMeta GetMetaForAttribute(Type attributeType)
{
PropertyMeta meta;
if (metasByAttributeType.TryGetValue(attributeType, out meta))
{
return meta;
}
else
{
return null;
}
}
}
}