2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-09 02:05:53 +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 = 92;
hecl::SystemString FindBlender(int& major, int& minor);
}