All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bigcustard.scene2dplus.sound.SoundUtils Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package com.bigcustard.scene2dplus.sound;

import com.badlogic.gdx.files.FileHandle;
import com.bigcustard.util.Util;

import java.io.InputStream;

public class SoundUtils {
    public static SoundModel importSound(InputStream soundStream, String url, FileHandle folder) {
        FileHandle mainSoundFile = Util.importFile(soundStream, url, folder);
        return new SoundModel(mainSoundFile);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy