Starsector API
Loading...
Searching...
No Matches
SoundAPI.java
Go to the documentation of this file.
1package com.fs.starfarer.api;
2
3
4public interface SoundAPI {
5 void stop();
6 void setVolume(float newValue);
7 void setPitch(float pitch);
8 void setLocation(float x, float y);
9 boolean isPlaying();
10}
void setVolume(float newValue)
void setPitch(float pitch)
void setLocation(float x, float y)