liblashgame

Pathfinder and path decision making library for 2D tile game
git clone git://holbrook.no/liblashgame.git
Log | Files | Refs

lash_game_color.h (303B)


      1 #ifndef LASH_GAME_COLOR_H_
      2 #define LASH_GAME_COLOR_H_
      3 
      4 #include <stdint.h>
      5 
      6 typedef uint32_t lash_color_t;
      7 
      8 #ifdef __cplusplus 
      9 extern "C" {
     10 #endif
     11 lash_color_t lash_mapColor(unsigned char r, unsigned char g, unsigned char b, unsigned char a);
     12 #ifdef __cplusplus 
     13 }
     14 #endif
     15 
     16 #endif // LASH_GAME_COLOR_H_