Mineplex2018-withcommit/Plugins/Mineplex.ChestConverter/src/mineplex/chestConverter/SearchConf.java

14 lines
190 B
Java
Raw Normal View History

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