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

14 lines
178 B
Java
Raw Normal View History

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