bc/bc/Process.hpp

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