src/Types.hh
changeset 370 39e59dd36b6e
parent 311 440763821484
child 393 5dd4d782cf3a
equal deleted inserted replaced
369:9b682981e060 370:39e59dd36b6e
    10 #include <stdint.h>
    10 #include <stdint.h>
    11 
    11 
    12 /* 
    12 /* 
    13  * Standard vector used for Physics stuff
    13  * Standard vector used for Physics stuff
    14  */
    14  */
    15 typedef _Vector<float> Vector;
    15 typedef VectorType<float> Vector;
    16 
    16 
    17 /**
    17 /**
    18  * A player's health is measured in...
    18  * A player's health is measured in...
    19  */
    19  */
    20 typedef int16_t Health;
    20 typedef int16_t Health;
    25 typedef long int PixelDimension;
    25 typedef long int PixelDimension;
    26 
    26 
    27 /**
    27 /**
    28  * A Terrain/Pixel coordinate as a PixelDimension Vector
    28  * A Terrain/Pixel coordinate as a PixelDimension Vector
    29  */
    29  */
    30 typedef _Vector<PixelDimension> PixelCoordinate;
    30 typedef VectorType<PixelDimension> PixelCoordinate;
    31 
    31 
    32 /**
    32 /**
    33  * A time interval, measured in real milliseconds
    33  * A time interval, measured in real milliseconds
    34  */
    34  */
    35 typedef signed long TimeMS;
    35 typedef signed long TimeMS;