2015-05-13 09:00:37 +02:00
|
|
|
package mineplex.chestConverter;
|
|
|
|
|
|
|
|
public class SearchConf
|
|
|
|
{
|
2015-05-17 10:28:44 +02:00
|
|
|
public SearchConf(int idIndex, int count)
|
2015-05-13 09:00:37 +02:00
|
|
|
{
|
2015-05-17 10:28:44 +02:00
|
|
|
IdIndex = idIndex;
|
2015-05-13 09:00:37 +02:00
|
|
|
Count = count;
|
|
|
|
}
|
|
|
|
|
2015-05-17 10:28:44 +02:00
|
|
|
public int IdIndex;
|
2015-05-13 09:00:37 +02:00
|
|
|
public int Count;
|
|
|
|
}
|