summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/ComparisonType.cs
blob: 6a4ff35e6b5ce174ea12ccbe92e54c4e72cd5be3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;

namespace XMainClient
{
	internal enum ComparisonType
	{
		FCTYPE_LESS_THAN,
		FCTYPE_LESS_OR_EQUAL_TO,
		FCTYPE_EQUAL_TO,
		FCTYPE_NOT_EQUAL_TO,
		FCTYPE_GREATER_THAN_OR_EQUAL_TO,
		FCTYPE_GREATER_THAN
	}
}