com.github.mathiewz.slick.openal.OggData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of modernized-slick Show documentation
Show all versions of modernized-slick Show documentation
The main purpose of this libraryis to modernize and maintain the slick2D library.
The newest version!
package com.github.mathiewz.slick.openal;
import java.nio.ByteBuffer;
/**
* Data describing the sounds in a OGG file
*
* @author Kevin Glass
*/
public class OggData {
/** The data that has been read from the OGG file */
public ByteBuffer data;
/** The sampling rate */
public int rate;
/** The number of channels in the sound file */
public int channels;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy