Bomberman
TraceLog.hpp
Go to the documentation of this file.
1 /*
2 ** EPITECH PROJECT, 2021
3 ** Bomberman
4 ** File description:
5 ** TraceLog
6 */
7 
8 #ifndef TRACELOG_HPP_
9 #define TRACELOG_HPP_
10 
11 #include <raylib.h>
12 
13 namespace RAY {
14  class TraceLog {
15  public:
16  typedef ::TraceLogLevel Level;
17 
20  static void setLevel(Level level);
21  };
22 }
23 
24 #endif /* !TRACELOG_HPP_ */
RAY::TraceLog
Definition: TraceLog.hpp:14
RAY::TraceLog::setLevel
static void setLevel(Level level)
Set Trace Log level.
Definition: TraceLog.cpp:10
RAY
Definition: IAudio.hpp:12
RAY::TraceLog::Level
::TraceLogLevel Level
Definition: TraceLog.hpp:16