mirror of
https://github.com/zoriya/Bomberman.git
synced 2026-05-27 16:22:09 +00:00
25 lines
374 B
C++
25 lines
374 B
C++
/*
|
|
** 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_ */
|