Mekanism-tilera-Edition/common/mekanism/client/sound/IHasSound.java
Victor Robertson e5a6eadc45 Fix indentation and remove trailing whitespace
This patch provides common/mekanism/*.java with standardized
indentation (tabs) and also removes trailing whitespace.
2014-03-07 19:20:35 -06:00

21 lines
390 B
Java

package mekanism.client.sound;
/**
* Implement this if your TileEntity has a specific sound.
* @author AidanBrady
*
*/
public interface IHasSound
{
/**
* Gets the sound path of this block's sound.
* @return sound path
*/
public String getSoundPath();
/**
* Gets the multiplier to play this sound by.
* @return sound multiplier
*/
public float getVolumeMultiplier();
}