24 lines
281 B
Java
24 lines
281 B
Java
/**
|
|
*
|
|
*/
|
|
package resonantinduction.core;
|
|
|
|
import resonantinduction.core.prefab.ProxyBase;
|
|
|
|
/**
|
|
* @author Calclavia
|
|
*
|
|
*/
|
|
public class CommonProxy extends ProxyBase
|
|
{
|
|
public boolean isPaused()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public boolean isGraphicsFancy()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
}
|