mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
29 lines
449 B
Java
29 lines
449 B
Java
package com.hbm.tileentity.turret;
|
|
|
|
import java.util.List;
|
|
|
|
import com.hbm.handler.BulletConfiguration;
|
|
|
|
public class TileEntityTurretJeremy extends TileEntityTurretBaseNT {
|
|
|
|
@Override
|
|
protected List<BulletConfiguration> getAmmoList() {
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public String getName() {
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public double getDecetorGrace() {
|
|
return 10D;
|
|
}
|
|
|
|
@Override
|
|
public double getTurretDepression() {
|
|
return 35D;
|
|
}
|
|
}
|