mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-19 09:54:46 +01:00
24 lines
381 B
C#
24 lines
381 B
C#
using System;
|
|
|
|
namespace BehaviorDesigner.Runtime.Tasks
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)]
|
|
public class TaskIconAttribute : Attribute
|
|
{
|
|
public readonly string mIconPath;
|
|
|
|
public string IconPath
|
|
{
|
|
get
|
|
{
|
|
return mIconPath;
|
|
}
|
|
}
|
|
|
|
public TaskIconAttribute(string iconPath)
|
|
{
|
|
mIconPath = iconPath;
|
|
}
|
|
}
|
|
}
|