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

main.c

Blame
  • main.c 172 B
    #include "main.h"
    
    int running;
    int game_state;
    
    
    int main(){
        running = 1;
        game_state = GAME;
        readMapFromFile("map.txt");
        initPlayer();
    
        MainLoop();
    
    }