Files
VoxelEngine/src/util/platform.hpp
T
2025-09-26 21:57:48 +03:00

18 lines
558 B
C++

#pragma once
#include <string>
#include <filesystem>
namespace platform {
void configure_encoding();
/// @return environment locale in ISO format ll_CC
std::string detect_locale();
/// @brief Open folder using system file manager asynchronously
/// @param folder target folder
void open_folder(const std::filesystem::path& folder);
/// Makes the current thread sleep for the specified amount of milliseconds.
void sleep(size_t millis);
int get_process_id();
bool open_url(const std::string& url);
}