add vcm format loader

This commit is contained in:
MihailRis
2025-05-02 15:27:05 +03:00
parent 9a0f6b23b0
commit ec85260ec4
4 changed files with 190 additions and 11 deletions
+12
View File
@@ -0,0 +1,12 @@
#pragma once
#include <memory>
#include <string>
namespace model {
struct Model;
}
namespace vcm {
std::unique_ptr<model::Model> parse(std::string_view file, std::string_view src);
}