All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sound.model.Sound Maven / Gradle / Ivy

package sound.model;

import sound.MultimediaLoader;

/**
 * 
 * @author yuripourre
 * @license LGPLv3
 *
 */

public class Sound {

	protected String path = "";
	
	public Sound(String path) {
		super();
		this.path = path;
	}
	
	public String getPath() {
		return path;
	}
	
	public void play() {
		MultimediaLoader.getInstance().playSound(path);
	}
		
} 




© 2015 - 2025 Weber Informatics LLC | Privacy Policy