home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 November / CHIP_2011_11.iso / Programy / Inne / Gry / Atomic_Tanks / Atomic-Tanks-5.1.exe / src / allegro.h next >
C/C++ Source or Header  |  2009-09-06  |  2KB  |  83 lines

  1. /*         ______   ___    ___
  2.  *        /\  _  \ /\_ \  /\_ \
  3.  *        \ \ \L\ \\//\ \ \//\ \      __     __   _ __   ___
  4.  *         \ \  __ \ \ \ \  \ \ \   /'__`\ /'_ `\/\`'__\/ __`\
  5.  *          \ \ \/\ \ \_\ \_ \_\ \_/\  __//\ \L\ \ \ \//\ \L\ \
  6.  *           \ \_\ \_\/\____\/\____\ \____\ \____ \ \_\\ \____/
  7.  *            \/_/\/_/\/____/\/____/\/____/\/___L\ \/_/ \/___/
  8.  *                                           /\____/
  9.  *                                           \_/__/
  10.  *
  11.  *      Main header file for the entire Allegro library.
  12.  *      (separate modules can be included from the allegro/ directory)
  13.  *
  14.  *      By Shawn Hargreaves.
  15.  *
  16.  *      Vincent Penquerc'h split the original allegro.h into separate headers.
  17.  *
  18.  *      See readme.txt for copyright information.
  19.  */
  20.  
  21.  
  22. #ifndef ALLEGRO_H
  23. #define ALLEGRO_H
  24.  
  25. #include "allegro/base.h"
  26.  
  27. #include "allegro/system.h"
  28. #include "allegro/debug.h"
  29.  
  30. #include "allegro/unicode.h"
  31.  
  32. #include "allegro/mouse.h"
  33. #include "allegro/timer.h"
  34. #include "allegro/keyboard.h"
  35. #include "allegro/joystick.h"
  36.  
  37. #include "allegro/palette.h"
  38. #include "allegro/gfx.h"
  39. #include "allegro/color.h"
  40. #include "allegro/draw.h"
  41. #include "allegro/rle.h"
  42. #include "allegro/compiled.h"
  43. #include "allegro/text.h"
  44. #include "allegro/font.h"
  45.  
  46. #include "allegro/fli.h"
  47. #include "allegro/config.h"
  48. #include "allegro/gui.h"
  49.  
  50. #include "allegro/sound.h"
  51.  
  52. #include "allegro/file.h"
  53. #include "allegro/lzss.h"
  54. #include "allegro/datafile.h"
  55.  
  56. #include "allegro/fixed.h"
  57. #include "allegro/fmaths.h"
  58. #include "allegro/matrix.h"
  59. #include "allegro/quat.h"
  60.  
  61. #include "allegro/3d.h"
  62. #include "allegro/3dmaths.h"
  63.  
  64.  
  65. #ifndef ALLEGRO_NO_COMPATIBILITY
  66.    #include "allegro/alcompat.h"
  67. #endif
  68.  
  69. #ifndef ALLEGRO_NO_FIX_CLASS
  70.    #ifdef __cplusplus
  71.       #include "allegro/fix.h"
  72.    #endif
  73. #endif
  74.  
  75.  
  76. #ifdef ALLEGRO_EXTRA_HEADER
  77.    #include ALLEGRO_EXTRA_HEADER
  78. #endif
  79.  
  80. #endif          /* ifndef ALLEGRO_H */
  81.  
  82.  
  83.