001package org.intellimate.izou.sdk.frameworks.permanentSoundOutput.output;
002
003/**
004 * base-interface used for the other helper interfaces
005 * @author LeanderK
006 * @version 1.0
007 */
008public interface PermanentSoundUsed {
009    /**
010     * true if using the sound output and false if not
011     * @return true if  using the sound output
012     */
013    boolean isOutputRunning();
014
015    /**
016     * true if using java, false if not (and for example a C-library)
017     * @return true if using java
018     */
019    boolean isUsingJava();
020}