add parts

This commit is contained in:
Minh VU
2024-11-20 07:03:18 +01:00
parent 9188d50741
commit cc920bf6b6
7 changed files with 38 additions and 4 deletions

View File

@@ -0,0 +1,10 @@
package src.fr.impl.Parts;
import src.fr.api.PartType;
import src.fr.impl.PartImpl;
public class Exterior extends PartImpl {
public Exterior(PartType partType){
super(partType);
}
}