mirror of
https://github.com/XevianLight/Aphelion.git
synced 2026-05-11 10:00:54 +01:00
16 lines
420 B
Java
16 lines
420 B
Java
package net.xevianlight.aphelion.block.custom;
|
|
|
|
import net.xevianlight.aphelion.block.custom.base.BaseRocketContainer;
|
|
import net.xevianlight.aphelion.block.custom.base.BaseRocketFuelTank;
|
|
|
|
public class BasicRocketContainer extends BaseRocketContainer {
|
|
public BasicRocketContainer(Properties properties) {
|
|
super(properties);
|
|
}
|
|
|
|
@Override
|
|
public int getSlotCapacity() {
|
|
return 9;
|
|
}
|
|
}
|