src/Types.hh
branchnew_graphics
changeset 418 194bc810a570
parent 417 c503e0c6a740
equal deleted inserted replaced
417:c503e0c6a740 418:194bc810a570
    11 
    11 
    12 /* 
    12 /* 
    13  * Standard vector used for Physics stuff
    13  * Standard vector used for Physics stuff
    14  */
    14  */
    15 typedef VectorType<float> Vector;
    15 typedef VectorType<float> Vector;
       
    16 
       
    17 /**
       
    18  * Message severity, WARN and above should go to stderr, INFO and DEBUG to stdout
       
    19  *
       
    20  * @see Engine::log
       
    21  * @see EngineConfig::log_level
       
    22  * @see Logger
       
    23  */
       
    24 enum LogLevel {
       
    25     FATAL,
       
    26     ERROR,
       
    27     WARN,
       
    28     INFO,
       
    29     DEBUG,
       
    30 };
    16 
    31 
    17 /**
    32 /**
    18  * A player's health is measured in...
    33  * A player's health is measured in...
    19  */
    34  */
    20 typedef int16_t Health;
    35 typedef int16_t Health;