21 lines
426 B
C#
21 lines
426 B
C#
using System;
|
|
using System.Diagnostics;
|
|
|
|
namespace CurvedUI
|
|
{
|
|
[Conditional("UNITY_CCU")]
|
|
[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)]
|
|
public class OptionalDependencyAttribute : Attribute
|
|
{
|
|
public string dependentClass;
|
|
|
|
public string define;
|
|
|
|
public OptionalDependencyAttribute(string dependentClass, string define)
|
|
{
|
|
this.dependentClass = dependentClass;
|
|
this.define = define;
|
|
}
|
|
}
|
|
}
|