package edu.cs.cs160.storytime;
public class StoryResource {
private String resourceName;
private int soundResource;
private int textResource;
public StoryResource(String name, int sound, int text) {
this.soundResource = sound;
this.textResource = text;
this.resourceName = name;
}
public int getSound() {
return soundResource;
}
public int getText() {
return textResource;
}
}
|