File size: 314 Bytes
d456972 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #pragma once
#include <motionbricks/motionbricks.h>
#include <filesystem>
#include <string>
struct mb_style;
namespace motionbricks::detail {
mb_status load_style_file(const std::filesystem::path & path,
mb_style & output, std::string & reason);
} // namespace motionbricks::detail
|