Files
beyond/Assets/ThirdParty/Invector-AIController/FSM/Scripts/Components/vFSMHelpboxAttribute.cs
2024-11-20 15:21:28 +01:00

17 lines
441 B
C#

#if UNITY_EDITOR
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEditor;
using System;
[AttributeUsage(AttributeTargets.Class)]
public class vFSMHelpboxAttribute : PropertyAttribute {
public MessageType messageType;
public string text;
public vFSMHelpboxAttribute(string text,MessageType messageType)
{
this.text = text;
this.messageType = messageType;
}
}
#endif