AuroraRuntime/Include/Aurora/Threading/Sleep.hpp
2021-06-27 22:25:29 +01:00

14 lines
286 B
C++

/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: Sleep.hpp
Date: 2021-6-10
Author: Reece
***/
#pragma once
namespace Aurora::Threading
{
AUKN_SYM void Sleep(AuUInt64 timeout = 0);
AUKN_SYM void SleepNs(AuUInt64 timeout = 0);
}