Skip to content
Snippets Groups Projects
Select Git revision
  • b7fb04f63d7dfb294fea9f901300e065f0228f3a
  • master default
2 results

recherche.md

Blame
  • Forked from Vincent MAZENOD / blog.limos.fr
    Source project has a limited visibility.
    main.h 426 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"
    #include "player.h"
    #include "fire.h"
    
    
    #define MENU 0
    #define GAME 1
    
    extern int running;
    extern int gameState;
    
    
    #endif