15 lines
302 B
Java
15 lines
302 B
Java
package logistics.material;
|
|
|
|
import logistics.quantities.IntUnit;
|
|
|
|
public class ShellBatches implements IntUnit{
|
|
public static ShellBatches INSTANCE = new ShellBatches();
|
|
|
|
private ShellBatches() {}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "batches of 120mm shells";
|
|
}
|
|
}
|