Files
NazaraEngine/src/Nazara/Audio/Formats/libflacLoader.hpp
2023-03-19 13:01:56 +01:00

21 lines
630 B
C++

// Copyright (C) 2023 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_LIBFLACLOADER_HPP
#define NAZARA_AUDIO_FORMATS_LIBFLACLOADER_HPP
#include <NazaraUtils/Prerequisites.hpp>
#include <Nazara/Audio/SoundBuffer.hpp>
#include <Nazara/Audio/SoundStream.hpp>
namespace Nz::Loaders
{
SoundBufferLoader::Entry GetSoundBufferLoader_libflac();
SoundStreamLoader::Entry GetSoundStreamLoader_libflac();
}
#endif // NAZARA_AUDIO_FORMATS_LIBFLACLOADER_HPP