custom-chatbot / data /BTAbort.cs
fastx's picture
Upload 64 files
00437a9
raw
history blame contribute delete
406 Bytes
using System;
namespace Quantum
{
public enum BTAbort
{
None,
Self,
LowerPriority,
Both
}
public static class BTAbortExtensions
{
public static Boolean IsSelf(this BTAbort abort)
{
return abort == BTAbort.Self || abort == BTAbort.Both;
}
public static Boolean IsLowerPriority(this BTAbort abort)
{
return abort == BTAbort.LowerPriority || abort == BTAbort.Both;
}
}
}