Skip to content
Snippets Groups Projects
Select Git revision
  • 1527c1a9c11dafc9624e4aa470e852e3b3df2fd5
  • main default
  • qlearn-4
  • qlearning5
  • qlearn5
  • render
  • qlearn
  • ball
  • fire
  • player
10 results

main.h

Blame
  • user avatar
    belkhiritaha authored
    d207b1a3
    History
    main.h 389 B
    #ifndef _MAIN_HEADER_
    #define _MAIN_HEADER_
    
    
    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    #include <time.h>
    #include <unistd.h>
    
    #include <SDL2/SDL.h>
    #include <SDL2/SDL_image.h>
    #include <SDL2/SDL_ttf.h>
    
    #include <pthread.h>
    
    #include "render.h"
    #include "gest_event.h"
    #include "map.h"
    
    
    #define MENU 0
    #define GAME 1
    
    extern int running;
    extern int game_state;
    
    
    #endif