mirror of
https://github.com/seekrs/MacroLibX.git
synced 2026-01-11 14:43:34 +00:00
begenning the refactor
This commit is contained in:
33
runtime/Includes/Core/Enums.h
git.filemode.normal_file
33
runtime/Includes/Core/Enums.h
git.filemode.normal_file
@@ -0,0 +1,33 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* Enums.h :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: maldavid <kbz_8.dev@akel-engine.com> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2024/03/27 17:15:24 by maldavid #+# #+# */
|
||||
/* Updated: 2024/03/27 17:16:03 by maldavid ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef __MLX_CORE_ENUMS__
|
||||
#define __MLX_CORE_ENUMS__
|
||||
|
||||
#include <cstddef>
|
||||
|
||||
namespace mlx
|
||||
{
|
||||
enum class LogType
|
||||
{
|
||||
Message = 0,
|
||||
Warning,
|
||||
Error,
|
||||
FatalError,
|
||||
|
||||
EndEnum
|
||||
};
|
||||
|
||||
constexpr std::size_t LogTypeCount = static_cast<std::size_t>(LogType::EndEnum) + 1;
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user