VoxelEngine/src/util/platform.h
2023-12-24 13:57:00 +03:00

11 lines
208 B
C++

#ifndef UTIL_PLATFORM_H_
#define UTIL_PLATFORM_H_
#include <string>
namespace platform {
extern void configure_encoding();
extern std::string detect_locale();
}
#endif // UTIL_PLATFORM_H_