Files
NazaraEngine/src/Nazara/Audio/Formats/libvorbisLoader.hpp
2022-01-01 15:30:09 +01:00

21 lines
635 B
C++

// Copyright (C) 2022 Jérôme "Lynix" Leclercq (lynix680@gmail.com)
// This file is part of the "Nazara Engine - Audio module"
// For conditions of distribution and use, see copyright notice in Config.hpp
#pragma once
#ifndef NAZARA_AUDIO_FORMATS_LIBVORBISLOADER_HPP
#define NAZARA_AUDIO_FORMATS_LIBVORBISLOADER_HPP
#include <Nazara/Prerequisites.hpp>
#include <Nazara/Audio/SoundBuffer.hpp>
#include <Nazara/Audio/SoundStream.hpp>
namespace Nz::Loaders
{
SoundBufferLoader::Entry GetSoundBufferLoader_libvorbis();
SoundStreamLoader::Entry GetSoundStreamLoader_libvorbis();
}
#endif // NAZARA_AUDIO_FORMATS_LIBVORBISLOADER_HPP