File size: 406 Bytes
00437a9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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;
		}
	}
}