17 lines
370 B
C#
17 lines
370 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using System;
|
|
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
public class DefectMethodAttribute : Attribute
|
|
{
|
|
private string defectName;
|
|
public DefectMethodAttribute(string _defectName)
|
|
{
|
|
defectName = _defectName;
|
|
}
|
|
|
|
public string DefectName { get => defectName; }
|
|
}
|