mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 11:24:46 +00:00
38 lines
583 B
C#
38 lines
583 B
C#
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;
|
|
}
|
|
}
|
|
} |