mirror of
https://github.com/zoriya/Bomberman.git
synced 2026-06-08 20:04:55 +00:00
encapsulation of trace log
This commit is contained in:
@@ -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_ */
|
||||
Reference in New Issue
Block a user