18 lines
313 B
C++
18 lines
313 B
C++
/***
|
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: EThreadThrottle.hpp
|
|
Date: 2022-3-21
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
namespace Aurora::Threading::Threads
|
|
{
|
|
AUE_DEFINE(EThreadThrottle,
|
|
(
|
|
ePerformance,
|
|
eNormal,
|
|
eEfficient
|
|
));
|
|
} |