using System;
namespace BehaviorTreeSlayer
{

    public class NoCreate : Attribute
    {

    }
    [AttributeUsage(AttributeTargets.Field)]
    public class OutField : Attribute
    {
        public Type FieldType;

        public OutField()
        {

        }

        public OutField(Type fieldType)
        {
            FieldType = fieldType;
        }
    }
    public class ShowMe : Attribute
    {
        public string ShowMsg;

        public ShowMe()
        {

        }

        public ShowMe(string showMsg)
        {
            ShowMsg = showMsg;
        }
    }
}