13 lines
280 B
Java
13 lines
280 B
Java
package net.minecraft.profiler;
|
|
|
|
public interface ISnooperInfo
|
|
{
|
|
void addServerStatsToSnooper(Snooper playerSnooper);
|
|
|
|
void addServerTypeToSnooper(Snooper playerSnooper);
|
|
|
|
/**
|
|
* Returns whether snooping is enabled or not.
|
|
*/
|
|
boolean isSnooperEnabled();
|
|
} |