19 lines
293 B
Java
19 lines
293 B
Java
package pm.j4.kerosene.modules.xray;
|
|
|
|
import pm.j4.kerosene.util.module.ModuleBase;
|
|
|
|
/**
|
|
* The type Xray.
|
|
*/
|
|
public class Xray extends ModuleBase {
|
|
/**
|
|
* Instantiates a new Xray.
|
|
*/
|
|
public Xray() {
|
|
super("petroleum.xray",
|
|
"petroleum.render",
|
|
true,
|
|
false,
|
|
true);
|
|
}
|
|
}
|