Rogue: Savage Rats, a retro-themed dungeon crawler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
rogue-savage-rats/src/mightypork/rogue/sounds/NullAudio.java

20 lines
421 B

package mightypork.rogue.sounds;
import mightypork.rogue.loading.NullResource;
import mightypork.utils.logging.LoggedName;
/**
* Placeholder for cases where no matching audio is found and
* {@link NullPointerException} has to be avoided.
*
* @author MightyPork
*/
@LoggedName(name = "NullAudio")
public class NullAudio extends DeferredAudio implements NullResource {
public NullAudio() {
super(null);
}
}