Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
AudioImporter.hpp
1#pragma once
2
3#include <filesystem>
4
5#include <Common/ResourcePipeline/Uuid.hpp>
6#include <Common/Editor/Importer.hpp>
7
8namespace Grindstone::Editor::Importers {
9 const Grindstone::Editor::ImporterVersion audioImporterVersion = 1;
10 void ImportAudio(AssetRegistry& assetRegistry, Assets::AssetManager& assetManger, const std::filesystem::path& inputPath);
11}