11 lines
184 B
Java
11 lines
184 B
Java
|
package calclavia.lib;
|
||
|
|
||
|
import java.util.HashSet;
|
||
|
|
||
|
import net.minecraft.entity.player.EntityPlayer;
|
||
|
|
||
|
public interface IPlayerUsing
|
||
|
{
|
||
|
public HashSet<EntityPlayer> getPlayersUsing();
|
||
|
}
|