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

21 lines
361 B
C++

/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: EThreadPrio.hpp
Date: 2021-6-11
Author: Reece
***/
#pragma once
namespace Aurora::Threading::Threads
{
enum class EThreadPrio
{
eInvalid,
ePrioAboveHigh,
ePrioHigh,
ePrioNormal,
ePrioSub,
ePrioRT
};
}