delete Sounds.java

This commit is contained in:
Ole Wachtel 2024-10-28 16:26:49 +01:00
parent 07b839fef5
commit afa8f598f7
1 changed files with 0 additions and 25 deletions

View File

@ -1,25 +0,0 @@
public class Sounds {
private String soundName;
private String path;
public Sounds(String soundName, String path){
setSoundName(soundName);
setPath(path);
}
public String getSoundName() {
return soundName;
}
public void setSoundName(String soundName) {
this.soundName = soundName;
}
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
}