Sophie

Sophie

distrib > Mageia > 5 > x86_64 > media > core-release > by-pkgid > bb8113fe14406042944874285ff4eac1 > files > 228

lib64allegro-devel-4.4.2-6.mga5.x86_64.rpm

/*         ______   ___    ___ 
 *        /\  _  \ /\_ \  /\_ \ 
 *        \ \ \L\ \\//\ \ \//\ \      __     __   _ __   ___ 
 *         \ \  __ \ \ \ \  \ \ \   /'__`\ /'_ `\/\`'__\/ __`\
 *          \ \ \/\ \ \_\ \_ \_\ \_/\  __//\ \L\ \ \ \//\ \L\ \
 *           \ \_\ \_\/\____\/\____\ \____\ \____ \ \_\\ \____/
 *            \/_/\/_/\/____/\/____/\/____/\/___L\ \/_/ \/___/
 *                                           /\____/
 *                                           \_/__/
 *
 *      Demo game.
 *
 *      By Miran Amon, Nick Davies, Elias Pschernig, Thomas Harte,
 *      Jakub Wasilewski.
 *
 *      See readme.txt for copyright information.
 */

#include <allegro.h>
#include "../include/framewk.h"


int main(void)
{
   if (init_framework() != DEMO_OK) {
      return 1;
   }

   run_framework();
   shutdown_framework();

   return 0;
}

END_OF_MAIN()