Удалить 'ProjectExcavator/src/RollersCount.java'

This commit is contained in:
insideq 2024-06-08 11:40:21 +04:00
parent 1dd764d0d7
commit b019ddaf9a

View File

@ -1,12 +0,0 @@
public enum RollersCount {
OneRoller(1),
TwoRollers(2),
ThreeRollers(3);
private int numOfRollers;
RollersCount(int numOfRollers){
this.numOfRollers = numOfRollers;
}
public int getNumOfRollers(){
return numOfRollers;
}
}