mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-24 01:40:06 +00:00
3.0 - unitypackage
This commit is contained in:
17
Editor/Attributes/SerieEditorAttribute.cs
Normal file
17
Editor/Attributes/SerieEditorAttribute.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
|
||||
using System;
|
||||
|
||||
namespace XCharts.Editor
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
|
||||
public sealed class SerieEditorAttribute : Attribute
|
||||
{
|
||||
public readonly Type serieType;
|
||||
|
||||
public SerieEditorAttribute(Type serieType)
|
||||
{
|
||||
this.serieType = serieType;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user