mirror of https://github.com/AxioDL/metaforce.git
14 lines
312 B
C++
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);
|
|
|
|
}
|