add Java Project #2

Merged
lgc merged 6 commits from ole into main 2024-10-29 11:49:50 +00:00
1 changed files with 0 additions and 25 deletions
Showing only changes of commit afa8f598f7 - Show all commits

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;
}
}