encapsulation of trace log

This commit is contained in:
arthur.jamet
2021-05-24 10:59:29 +02:00
parent 4ef7f7543a
commit 60cfc7f9be
4 changed files with 41 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
/*
** EPITECH PROJECT, 2021
** Bomberman
** File description:
** TraceLog
*/
#ifndef TRACELOG_HPP_
#define TRACELOG_HPP_
#include <raylib.h>
namespace RAY {
class TraceLog {
public:
typedef ::TraceLogLevel Level;
//! @brief Set Trace Log level
//! @param level Level of log to display
static void setLevel(Level level);
};
}
#endif /* !TRACELOG_HPP_ */