mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-05-14 19:40:47 +00:00
14 lines
217 B
C#
14 lines
217 B
C#
using System;
|
|
|
|
namespace YooAsset.Editor
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class TaskAttribute : Attribute
|
|
{
|
|
public string Desc;
|
|
public TaskAttribute(string desc)
|
|
{
|
|
Desc = desc;
|
|
}
|
|
}
|
|
} |