Files
NazaraEngine/src/Nazara/Audio/Formats/minimp3Loader.hpp
2021-10-26 15:52:46 +02:00

21 lines
625 B
C++

// Copyright (C) 2021 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_MINIMP3LOADER_HPP
#define NAZARA_AUDIO_FORMATS_MINIMP3LOADER_HPP
#include <Nazara/Prerequisites.hpp>
#include <Nazara/Audio/SoundBuffer.hpp>
#include <Nazara/Audio/SoundStream.hpp>
namespace Nz::Loaders
{
SoundBufferLoader::Entry GetSoundBufferLoader_minimp3();
SoundStreamLoader::Entry GetSoundStreamLoader_minimp3();
}
#endif // NAZARA_AUDIO_FORMATS_MINIMP3LOADER_HPP