2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-08-16 04:19:10 +00:00
metaforce/metaforce-gui/FindBlender.hpp

14 lines
312 B
C++

#pragma once
#include "hecl/hecl.hpp"
namespace hecl::blender {
constexpr uint32_t MinBlenderMajorSearch = 2;
constexpr uint32_t MaxBlenderMajorSearch = 2;
constexpr uint32_t MinBlenderMinorSearch = 83;
constexpr uint32_t MaxBlenderMinorSearch = 93;
hecl::SystemString FindBlender(int& major, int& minor);
}