001package com.fs.starfarer.api;
002
003
004public interface SoundAPI {
005        void stop();
006        void setVolume(float newValue);
007        void setPitch(float pitch);
008        void setLocation(float x, float y);
009        boolean isPlaying();
010}