YAGE  v0.1.4.0
Yet Another Game Engine
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
loglevel.h
Go to the documentation of this file.
1 
9 #ifndef YAGE_CORE_LOGLEVEL_H
10 #define YAGE_CORE_LOGLEVEL_H
11 
12 namespace yage {
13 
14 enum class LogLevel {
15  DEBUG,
16  INFO,
17  WARNING,
18  ERROR,
19  FATAL,
20 };
21 
22 }
23 
24 #endif
LogLevel
Definition: loglevel.h:14