#pragma once #include #include namespace hal { inline void init() { HAL_Init(); } struct time { inline static std::uint32_t get_ms() { return HAL_GetTick(); } }; }; // namespace hal