uebung05 ende

This commit is contained in:
2025-05-13 18:13:15 +02:00
parent cd913d2703
commit 6efe637f23
19 changed files with 518 additions and 8 deletions

View File

@@ -0,0 +1,14 @@
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";
}
}