mirror of
https://github.com/thunderbrewhq/bc.git
synced 2025-12-12 10:02:30 +00:00
15 lines
211 B
C++
15 lines
211 B
C++
#ifndef BC_PROCESS_HPP
|
|
#define BC_PROCESS_HPP
|
|
|
|
#include <cstdint>
|
|
|
|
namespace Blizzard {
|
|
namespace Process {
|
|
|
|
// Functions
|
|
void Sleep(uint32_t durationMs);
|
|
|
|
} // namespace Process
|
|
} // namespace Blizzard
|
|
|
|
#endif
|