delete Sounds.java
This commit is contained in:
parent
07b839fef5
commit
afa8f598f7
|
@ -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;
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue