mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
10 lines
160 B
C#
10 lines
160 B
C#
|
namespace PKHeX.Core.Searching
|
||
|
{
|
||
|
public enum SearchComparison
|
||
|
{
|
||
|
None,
|
||
|
Equals,
|
||
|
GreaterThanEquals,
|
||
|
LessThanEquals,
|
||
|
}
|
||
|
}
|