21 lines
635 B
C++
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
|