3#include "pixelbullet/core/platform_paths.h"
8namespace pixelbullet::platform
10enum class HostPlatform : uint8_t
17inline constexpr HostPlatform current_platform = HostPlatform::Windows;
18#elif defined(__linux__)
19inline constexpr HostPlatform current_platform = HostPlatform::Linux;
21#error "Unsupported platform"
25uint32_t GetProcessId();
26std::tm ToLocalTime(std::time_t value);
27std::tm ToUtcTime(std::time_t value);