53323279c7
Still need to configure the build
10 lines
184 B
Java
10 lines
184 B
Java
package calclavia.lib;
|
|
|
|
import java.util.HashSet;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
public interface IPlayerUsing
|
|
{
|
|
public HashSet<EntityPlayer> getPlayersUsing();
|
|
}
|