VoxelEngine/src/util/platform.hpp
2024-08-10 01:57:59 +03:00

10 lines
183 B
C++

#pragma once
#include <string>
namespace platform {
void configure_encoding();
// @return environment locale in ISO format ll_CC
std::string detect_locale();
}